Last change
on this file since 111 was
111,
checked in by Sam Hocevar, 17 years ago
|
- Removed CPPFLAGS_slang and CPPFLAGS_ncurses, we now have config.h.
|
File size:
731 bytes
|
Line | |
---|
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 | LDFLAGS_slang = -lslang |
---|
12 | endif |
---|
13 | if USE_NCURSES |
---|
14 | LDFLAGS_ncurses = -lncurses |
---|
15 | endif |
---|
16 | |
---|
17 | bin_PROGRAMS = demo |
---|
18 | demo_SOURCES = demo.c |
---|
19 | |
---|
20 | demo_CPPFLAGS = -I../libee |
---|
21 | demo_LDADD = ../libee/libee.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm |
---|
22 | |
---|
Note: See
TracBrowser
for help on using the repository browser.