author | Ryan C. Gordon <icculus@icculus.org> |
Sun, 26 Sep 2004 13:00:59 +0000 | |
changeset 650 | 298b8bb26775 |
parent 604 | ea8664e863c2 |
permissions | -rw-r--r-- |
213 | 1 |
if BUILD_TEST_PHYSFS |
2 |
||
3 |
bin_PROGRAMS = test_physfs |
|
4 |
||
5 |
INCLUDES = -I$(top_srcdir) |
|
6 |
||
604
ea8664e863c2
Make physfs itself not link against readline and ncurses (just
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
7 |
if BUILD_READLINE |
ea8664e863c2
Make physfs itself not link against readline and ncurses (just
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
8 |
test_physfs_LDFLAGS="-lreadline -lcurses" |
ea8664e863c2
Make physfs itself not link against readline and ncurses (just
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
9 |
endif |
ea8664e863c2
Make physfs itself not link against readline and ncurses (just
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
10 |
|
213 | 11 |
test_physfs_LDADD = ../libphysfs.la |
12 |
test_physfs_SOURCES = test_physfs.c |
|
13 |
||
14 |
endif |