diff options
author | Daniil Baturin <daniil@baturin.org> | 2013-05-25 21:54:36 -0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2013-05-25 21:54:36 -0700 |
commit | a95eae0bfe26c20be3fd84871ce14c861d505c19 (patch) | |
tree | 07a4726ccebaed7c19bbc3e772c2989dd99ad387 /tests/Makefile.am | |
parent | 256d4d7c8d494093a206cd72e7375079e6cf8b99 (diff) | |
download | ipaddrcheck-a95eae0bfe26c20be3fd84871ce14c861d505c19.tar.gz ipaddrcheck-a95eae0bfe26c20be3fd84871ce14c861d505c19.zip |
Multiple improvements.
* Change option handling, allow multiple options at the same time,
treated as logical AND.
* IPv4 feature set is mostly complete.
* Change function lib license to LGPL for the case it will be
converted into a shared lib.
* Add unit tests (rely on Check framework)
* Something else, but who cares, it's a very early stage.
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..0d76cc4 --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,5 @@ +TESTS = check_ipaddrcheck +check_PROGRAMS = check_ipaddrcheck +check_ipaddrcheck_SOURCES = check_ipaddrcheck.c $(top_builddir)/src/iptest.h +check_ipaddrcheck_CFLAGS = @CHECK_CFLAGS@ +check_ipaddrcheck_LDADD = -lcidr -lpcre @CHECK_LIBS@ |