Makefile.am 474 B

12345678910111213141516
  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/ctype/ctype.c \
  13. testc/str/str.c \
  14. testc/list/list.c