From d26ab5f2338aaf07289dd57c7770f85a79cf7b2b Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Sun, 27 Feb 2011 19:53:05 +0100 Subject: Removed ./configure stuff, created simple makefile --- plugins/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'plugins/Makefile') 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 -- cgit v1.2.1