|
1234567891011121314151617181920212223242526 |
- ###############################################################################
- # Automake targets and declarations for libee
- ###############################################################################
-
- AM_CFLAGS = -g -O2 -fno-strength-reduce -fomit-frame-pointer
-
- # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
- AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs
-
- if USE_SLANG
- CPPFLAGS_slang = -DUSE_SLANG
- endif
- if USE_NCURSES
- CPPFLAGS_ncurses = -DUSE_NCURSES
- endif
-
- lib_LIBRARIES = libee.a
- libee_a_SOURCES = \
- ee.c \
- ee.h \
- io.c \
- line.c \
- math.c \
- $(NULL)
- libee_a_CPPFLAGS = $(CPPFLAGS_slang) $(CPPFLAGS_ncurses)
-
|