summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
authorBalbir Singh <balbir@linux.vnet.ibm.com>2008-04-11 19:38:06 +0000
committerBalbir Singh <balbir@linux.vnet.ibm.com>2008-04-11 19:38:06 +0000
commit2be6ec85fb430e17afcf16b0ab84e4f966920472 (patch)
treeb0faddbaf23aa2a2fe68042ebac80e0c9b4a3833 /tests/Makefile
parent31f116d4e2842da4929e7bb7e6187c3d9259422c (diff)
downloadlibcg-2be6ec85fb430e17afcf16b0ab84e4f966920472.tar.gz
libcg-2be6ec85fb430e17afcf16b0ab84e4f966920472.tar.xz
libcg-2be6ec85fb430e17afcf16b0ab84e4f966920472.zip
Several bug fixes, some API enhancements.
The first basic acceptance test is under development and first prototype is released api.c | 161 +++++++++++++++++++++++++++++++++++++++++++---------- libcg.h | 14 +--- tests/Makefile | 9 ++ tests/libcg_ba.cpp | 127 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 274 insertions(+), 37 deletions(-) Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com> git-svn-id: https://libcg.svn.sourceforge.net/svnroot/libcg/branches/balbir@12 4f4bb910-9a46-0410-90c8-c897d4f1cd53
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 0000000..e2779f6
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,9 @@
+CXXFLAGS = -g -O2 -Wall -DDEBUG
+LDFLAGS =
+LIBS = -lcg
+
+libcg_ba: libcg_ba.cpp
+ $(CXX) $(CXXFLAGS) -o $@ $< $(LIBS)
+
+clean:
+ \rm libcg_ba