aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libfoo/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libfoo/Makefile')
-rw-r--r--tests/libfoo/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/libfoo/Makefile b/tests/libfoo/Makefile
deleted file mode 100644
index eaf8f62f4..000000000
--- a/tests/libfoo/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-all: foo.o bar.o
- g++ -fPIC -shared foo.o bar.o -o libfoo.so
-
-foo.o: foo.h foo.cpp
- g++ -fPIC foo.cpp -c
-
-bar.o: bar.h bar.cpp
- g++ -fPIC bar.cpp -c
-
-test: main.cpp
- g++ main.cpp -L. -lfoo -I. -o footest
-
-clean:
- rm *.o *.so footest -rf
-