Last change
on this file since 105 was
105,
checked in by Sam Hocevar, 17 years ago
|
- libee/triangle.c:
+ Implemented ee_fill_triangle().
- test/demo.c:
+ Triangle demo.
|
File size:
831 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 | 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) -lm |
---|
24 | |
---|
Note: See
TracBrowser
for help on using the repository browser.