summaryrefslogtreecommitdiff
path: root/plugins/Makefile
diff options
context:
space:
mode:
authorFlorian Jung <flo@thinkpad.(none)>2011-02-27 19:53:05 +0100
committerFlorian Jung <flo@thinkpad.(none)>2011-02-27 19:53:05 +0100
commitd26ab5f2338aaf07289dd57c7770f85a79cf7b2b (patch)
tree763147d5f178d7db09910b5ab2fe8fe6d75afa9b /plugins/Makefile
parentdacd393fefeabafd1306533dd6c5a56e0ab347cc (diff)
Removed ./configure stuff, created simple makefile
Diffstat (limited to 'plugins/Makefile')
-rw-r--r--plugins/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/Makefile b/plugins/Makefile
index f81ebcd..c881e08 100644
--- a/plugins/Makefile
+++ b/plugins/Makefile
@@ -1,3 +1,10 @@
+all:
+ for i in *.cpp; do make $${i%.cpp}.so; done
+
%.so: %.cpp
$(CXX) $(CXXFLAGS) -shared -o $@ $^ ../myfuncs.cpp
+clean:
+ rm *.so *.o
+
+.PHONY: clean all