Makefile
changeset 35 314aa047a910
parent 30 53e99e552122
child 58 d0295e6deb62
equal deleted inserted replaced
34:a387bc77ad52 35:314aa047a910
     1 # :set noexpandtab
     1 # :set noexpandtab
       
     2 CFLAGS_ALL = -Wall -std=gnu99
       
     3 CFLAGS_DBG = -g
       
     4 CFLAGS_REL = -O2
       
     5 
       
     6 CFLAGS_SEL = ${CFLAGS_REL}
     2 
     7 
     3 # warnings, and use C99 with GNU extensions
     8 # warnings, and use C99 with GNU extensions
     4 CFLAGS = -Wall -std=gnu99 -g
     9 CFLAGS = ${CFLAGS_ALL} ${CFLAGS_SEL}
     5 
    10 
     6 # preprocessor flags
    11 # preprocessor flags
     7 CPPFLAGS = -Iinclude -Isrc/
    12 CPPFLAGS = -Iinclude -Isrc/
     8 
    13 
     9 # libraries to use
    14 # libraries to use