summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Safranek <jsafrane@redhat.com>2009-03-13 15:16:19 +0100
committerJan Safranek <jsafrane@redhat.com>2009-03-26 09:34:18 +0100
commit17081cc438b65f53351998c717bef0696d23fbd3 (patch)
tree0849d7fd7056592a5a4dbcc2ec6762ecf992cf55
parentf8e05fc8c129a13fed256b03a23537ef94c77152 (diff)
downloadlibcg-17081cc438b65f53351998c717bef0696d23fbd3.tar.gz
libcg-17081cc438b65f53351998c717bef0696d23fbd3.tar.xz
libcg-17081cc438b65f53351998c717bef0696d23fbd3.zip
Remove tests/Makefile
Remove tests/Makefile, it will be replaced by automake generated one. Signed-off-by: Jan Safranek <jsafrane@redhat.com>
-rw-r--r--tests/Makefile38
1 files changed, 0 insertions, 38 deletions
diff --git a/tests/Makefile b/tests/Makefile
deleted file mode 100644
index 9ebadac..0000000
--- a/tests/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-LDFLAGS = -L .. -L.
-LIBS = -lcgroup -lpthread -ltest_functions
-INC = -I ..
-CXXFLAGS = -g -O2 -Wall -DDEBUG $(INC)
-CFLAGS = -g -O2 -Wall -DDEBUG
-
-TARGET= libtest_functions.a \
- libcgrouptest01 \
- libcg_ba \
- setuid \
- pathtest \
- walk_test
-
-all: $(TARGET)
-
-test_functions.o: test_functions.c
- $(CXX) $(CXXFLAGS) -c $<
-
-libtest_functions.a: test_functions.o
- $(AR) -cr $@ $^
-
-libcgrouptest01: test_functions.o libcgrouptest01.c
- $(CXX) $(CXXFLAGS) -o $@ libcgrouptest01.c $(LDFLAGS) $(LIBS)
-
-libcg_ba: libcg_ba.cpp
- $(CXX) $(CXXFLAGS) -o $@ $< $(LDFLAGS) $(LIBS)
-
-setuid: setuid.c
- $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) $(LIBS)
-
-pathtest: pathtest.c
- $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) $(LIBS)
-
-walk_test: walk_test.c
- $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) $(LIBS)
-
-clean:
- \rm -f $(TARGET) test_functions.o