1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
AUTOMAKE_OPTIONS = foreign no-dependencies
LDADD = ../libmonit.la
INCLUDES = -I../src/ -I../src/util -I../src/net -I../src/io -I../src/exceptions -I../src/thread
noinst_PROGRAMS = StrTest \
SystemTest \
ListTest \
DirTest \
StringBufferTest \
InputStreamTest \
OutputStreamTest \
FileTest \
ExceptionTest \
NetTest \
TimeTest \
CommandTest
StrTest_SOURCES = StrTest.c
CommandTest_SOURCES = CommandTest.c
SystemTest_SOURCES = SystemTest.c
ListTest_SOURCES = ListTest.c
DirTest_SOURCES = DirTest.c
StringBufferTest_SOURCES = StringBufferTest.c
InputStreamTest_SOURCES = InputStreamTest.c
OutputStreamTest_SOURCES = OutputStreamTest.c
FileTest_SOURCES = FileTest.c
ExceptionTest_SOURCES = ExceptionTest.c
NetTest_SOURCES = NetTest.c
TimeTest_SOURCES = TimeTest.c
DISTCLEANFILES = *~
distclean-local:
-rm -f Makefile.in
verify:
@/bin/bash ./test.sh
|