source: libcaca/trunk/test/Makefile.am @ 183

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
5AM_CPPFLAGS = -I$(top_srcdir)/libee
6
7if USE_SLANG
8LDFLAGS_slang = -lslang
9endif
10if USE_NCURSES
11LDFLAGS_ncurses = -lncurses
12endif
13
14bin_PROGRAMS = demo spritedit
15
16demo_SOURCES = demo.c
17demo_LDADD = ../libee/libee.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm
18demo_CFLAGS = `pkg-config --cflags gtk+-2.0`
19demo_LDFLAGS = `pkg-config --libs gtk+-2.0`
20
21spritedit_SOURCES = spritedit.c
22spritedit_LDADD = ../libee/libee.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm
23
Note: See TracBrowser for help on using the repository browser.