From 711a63c955410d2e06f6f19f2561525049203b8d Mon Sep 17 00:00:00 2001 From: Paul Sladen Date: Wed, 29 Jul 2009 13:55:31 +0100 Subject: [PATCH] AtsPluginProxy/: add Makefile --- AtsPluginProxy/Makefile | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) create mode 100644 AtsPluginProxy/Makefile diff --git a/AtsPluginProxy/Makefile b/AtsPluginProxy/Makefile new file mode 100644 index 0000000..83cf121 --- /dev/null +++ b/AtsPluginProxy/Makefile @@ -0,1 +1,15 @@ +# Paul Sladen, 2009-07-29 + +CFLAGS += -shared -fPIC +LDFLAGS += -shared + +AtsPluginProxy.so: AtsPluginProxy.o + $(LD) -o $@ $(LDFLAGS) -ldl $< + +%.o: %.cpp + $(CC) -c -o $@ $(CFLAGS) $< + +clean: + -rm -f AtsPluginProxy.so AtsPluginProxy.o + +.PHONY: clean -- 1.6.0.4