Last change
on this file since 183 was
183,
checked in by Sam Hocevar, 20 years ago
|
- Very ugly ee_blit function. Will be polished in a while.
|
File size:
664 bytes
|
Line | |
---|
1 | ############################################################################### |
---|
2 | # Automake targets and declarations for libee tests |
---|
3 | ############################################################################### |
---|
4 | |
---|
5 | AM_CPPFLAGS = -I$(top_srcdir)/libee |
---|
6 | |
---|
7 | if USE_SLANG |
---|
8 | LDFLAGS_slang = -lslang |
---|
9 | endif |
---|
10 | if USE_NCURSES |
---|
11 | LDFLAGS_ncurses = -lncurses |
---|
12 | endif |
---|
13 | |
---|
14 | bin_PROGRAMS = demo spritedit |
---|
15 | |
---|
16 | demo_SOURCES = demo.c |
---|
17 | demo_LDADD = ../libee/libee.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm |
---|
18 | demo_CFLAGS = `pkg-config --cflags gtk+-2.0` |
---|
19 | demo_LDFLAGS = `pkg-config --libs gtk+-2.0` |
---|
20 | |
---|
21 | spritedit_SOURCES = spritedit.c |
---|
22 | spritedit_LDADD = ../libee/libee.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm |
---|
23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.