Makefile.am 566 B

12345678910111213141516171819202122
  1. ## Process this file with automake to produce Makefile.in
  2. bin_PROGRAMS += \
  3. testc/testc
  4. testc_testc_SOURCES = \
  5. testc/testc.c
  6. # The testc binary must be maximally static because LD_LIBRARY_PATH may be used
  7. # to test not-installed libraries. This LD_LIBRARY_PATH can influence testc
  8. # itself. So build necessary parts of faux library statically.
  9. testc_testc_SOURCES += \
  10. testc/base/mem.c \
  11. testc/base/io.c \
  12. testc/base/fs.c \
  13. testc/ctype/ctype.c \
  14. testc/str/str.c \
  15. testc/list/list.c \
  16. testc/list/private.h
  17. testc_testc_LDADD = \
  18. libfaux.la \
  19. $(LIBOBJS)