diff options
| author | 2013-12-13 00:44:17 +0100 | |
|---|---|---|
| committer | 2013-12-13 00:44:17 +0100 | |
| commit | a798afc8b5b00a43f4b121168e0419df2d398338 (patch) | |
| tree | c178d7a149028944254511d03f91266ca43cfcbd /test/Makefile.am | |
| parent | 3b7647499474619b3e24bf01105b6b037887a0ed (diff) | |
| download | libplist-a798afc8b5b00a43f4b121168e0419df2d398338.tar.gz libplist-a798afc8b5b00a43f4b121168e0419df2d398338.tar.bz2 | |
change build system to autotools
Diffstat (limited to 'test/Makefile.am')
| -rw-r--r-- | test/Makefile.am | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am new file mode 100644 index 0000000..837c1dd --- /dev/null +++ b/test/Makefile.am | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | AM_CFLAGS = $(GLOBAL_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/libcnary/include | ||
| 2 | AM_LDFLAGS = | ||
| 3 | |||
| 4 | noinst_PROGRAMS = plist_cmp plist_test | ||
| 5 | |||
| 6 | plist_cmp_SOURCES = plist_cmp.c | ||
| 7 | plist_cmp_LDADD = ../src/libplist.la | ||
| 8 | |||
| 9 | plist_test_SOURCES = plist_test.c | ||
| 10 | plist_test_LDADD = ../src/libplist.la | ||
| 11 | |||
| 12 | TESTS = \ | ||
| 13 | empty.test \ | ||
| 14 | small.test \ | ||
| 15 | medium.test \ | ||
| 16 | large.test \ | ||
| 17 | huge.test \ | ||
| 18 | bigarray.test \ | ||
| 19 | emptycmp.test \ | ||
| 20 | smallcmp.test \ | ||
| 21 | mediumcmp.test \ | ||
| 22 | largecmp.test \ | ||
| 23 | hugecmp.test \ | ||
| 24 | bigarraycmp.test | ||
| 25 | |||
