diff options
author | Florian Jung <flo@thinkpad.(none)> | 2011-02-27 19:53:05 +0100 |
---|---|---|
committer | Florian Jung <flo@thinkpad.(none)> | 2011-02-27 19:53:05 +0100 |
commit | d26ab5f2338aaf07289dd57c7770f85a79cf7b2b (patch) | |
tree | 763147d5f178d7db09910b5ab2fe8fe6d75afa9b /plugins/Makefile | |
parent | dacd393fefeabafd1306533dd6c5a56e0ab347cc (diff) |
Removed ./configure stuff, created simple makefile
Diffstat (limited to 'plugins/Makefile')
-rw-r--r-- | plugins/Makefile | 7 |
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 |