From d90a5a5fcfd899f32eae6fd3ce87b082ff221df8 Mon Sep 17 00:00:00 2001 From: Balbir Singh Date: Sun, 11 May 2008 10:15:14 +0000 Subject: Merge from Balbir's and Dhaval's branches Makefile | 13 ++ api.c | 335 ++++++++++++++++++++++++++++++++++++++++----------------------- libcg.h | 42 +++++-- 3 files changed, 255 insertions(+), 135 deletions(-) Signed-off-by: Balbir Singh git-svn-id: https://libcg.svn.sourceforge.net/svnroot/libcg/trunk@24 4f4bb910-9a46-0410-90c8-c897d4f1cd53 --- tests/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/Makefile (limited to 'tests/Makefile') 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 -- cgit