Changeset 85
- Timestamp:
- Nov 9, 2003, 2:02:34 PM (17 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/libee/Makefile.am
r79 r85 1 ############################################################################### 2 # Automake targets and declarations for libee 3 ############################################################################### 4 5 AM_CFLAGS = -g -O2 -fno-strength-reduce -fomit-frame-pointer 6 7 # Code qui fait des warnings == code de porc == deux baffes dans ta gueule 8 AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs 9 1 10 if USE_SLANG 2 11 CPPFLAGS_slang = -DUSE_SLANG -
libcaca/trunk/test/Makefile.am
r77 r85 1 ############################################################################### 2 # Automake targets and declarations for libee tests 3 ############################################################################### 4 5 AM_CFLAGS = -g -O2 -fno-strength-reduce -fomit-frame-pointer 6 7 # Code qui fait des warnings == code de porc == deux baffes dans ta gueule 8 AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs 9 10 if USE_SLANG 11 CPPFLAGS_slang = -DUSE_SLANG 12 LDFLAGS_slang = -lslang 13 endif 14 if USE_NCURSES 15 CPPFLAGS_ncurses = -DUSE_NCURSES 16 LDFLAGS_ncurses = -lncurses 17 endif 18 19 bin_PROGRAMS = demo 20 demo_SOURCES = demo.c 21 22 demo_CPPFLAGS = -I../libee $(CPPFLAGS_slang) $(CPPFLAGS_ncurses) 23 demo_LDADD = ../libee/libee.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) 24
Note: See TracChangeset
for help on using the changeset viewer.