1
0

Makefile.am 224 B

1234567891011121314
  1. if BUILD_TEST_PHYSFS
  2. bin_PROGRAMS = test_physfs
  3. INCLUDES = -I$(top_srcdir)
  4. if BUILD_READLINE
  5. test_physfs_LDFLAGS="-lreadline -lcurses"
  6. endif
  7. test_physfs_LDADD = ../libphysfs.la
  8. test_physfs_SOURCES = test_physfs.c
  9. endif