summaryrefslogtreecommitdiffstats
path: root/receiver/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'receiver/Makefile')
-rw-r--r--receiver/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/receiver/Makefile b/receiver/Makefile
index 96d1bb8..fdc2a8c 100644
--- a/receiver/Makefile
+++ b/receiver/Makefile
@@ -1,14 +1,14 @@
include ../config.mk
-all: PS3Pad.so
+all: Socket.so
clean:
rm -f *.c *.so
-PS3Pad.c: PS3Pad.vala
- $(VALAC) --pkg gmodule-2.0 --pkg posix --pkg linux -C $< ../receiver.vala
+socket.c: socket.vala msg-format.vala
+ $(VALAC) --pkg gmodule-2.0 --pkg gio-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 $@ $<
+Socket.so: socket.c msg-format.c
+ $(CC) -shared -fPIC `pkg-config --cflags --libs glib-2.0 gobject-2.0 gmodule-2.0` -o $@ $^
.PHONY: all clean