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