From 8a08b9dce9cfc161494ddb07a1c979c7796780ff Mon Sep 17 00:00:00 2001 From: Sebastian Reichel Date: Fri, 15 Jun 2012 22:56:00 +0200 Subject: restructure code it is now loading its components from plugins --- receiver/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 receiver/Makefile (limited to 'receiver/Makefile') diff --git a/receiver/Makefile b/receiver/Makefile new file mode 100644 index 0000000..96d1bb8 --- /dev/null +++ b/receiver/Makefile @@ -0,0 +1,14 @@ +include ../config.mk + +all: PS3Pad.so + +clean: + rm -f *.c *.so + +PS3Pad.c: PS3Pad.vala + $(VALAC) --pkg gmodule-2.0 --pkg posix --pkg linux -C $< ../receiver.vala + +PS3Pad.so: PS3Pad.c + $(CC) -shared -fPIC `pkg-config --cflags --libs glib-2.0 gobject-2.0 gmodule-2.0` -o $@ $< + +.PHONY: all clean -- cgit v1.2.3