Last change
on this file since 98 was
98,
checked in by Sam Hocevar, 17 years ago
|
- src/weapons.c:
+ Removed draw_circle, use ee_draw_circle instead.
- libee/circle.c:
+ New ee_draw_circle function.
- libee/line.c:
+ Changed an internal function's name.
|
File size:
761 bytes
|
Line | |
---|
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 | |
---|
10 | if USE_SLANG |
---|
11 | CPPFLAGS_slang = -DUSE_SLANG |
---|
12 | endif |
---|
13 | if USE_NCURSES |
---|
14 | CPPFLAGS_ncurses = -DUSE_NCURSES |
---|
15 | endif |
---|
16 | |
---|
17 | lib_LIBRARIES = libee.a |
---|
18 | libee_a_SOURCES = \ |
---|
19 | ee.c \ |
---|
20 | ee.h \ |
---|
21 | io.c \ |
---|
22 | circle.c \ |
---|
23 | line.c \ |
---|
24 | math.c \ |
---|
25 | $(NULL) |
---|
26 | libee_a_CPPFLAGS = $(CPPFLAGS_slang) $(CPPFLAGS_ncurses) |
---|
27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.