Makefile.am 926 B

123456789101112131415161718192021222324
  1. #
  2. # This program is free software; you can redistribute it and/or
  3. # modify it under the terms of the GNU General Public License
  4. # as published by the Free Software Foundation; either version 2
  5. # of the License, or (at your option) any later version.
  6. #
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. # GNU General Public License for more details.
  11. # Author: hakanai
  12. LDADD = ../src/libsdb.la
  13. AM_CFLAGS=-I../src/
  14. AM_LDFLAGS = -static
  15. check_PROGRAMS = sdb_open sdb_record sdb_lock sdb_update sdb_delete sdb_cats
  16. sdb_open_SOURCES = sdb_open.c
  17. sdb_record_SOURCES = sdb_record.c
  18. sdb_lock_SOURCES = sdb_lock.c
  19. sdb_update_SOURCES= sdb_update.c
  20. sdb_delete_SOURCES = sdb_delete.c
  21. sdb_cats_SOURCES = sdb_cats.c
  22. TESTS = sdb_open sdb_lock sdb_record sdb_update sdb_delete sdb_cats