diff options
Diffstat (limited to 'ctrl/models/Makefile')
-rw-r--r-- | ctrl/models/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ctrl/models/Makefile b/ctrl/models/Makefile new file mode 100644 index 0000000..113d1be --- /dev/null +++ b/ctrl/models/Makefile @@ -0,0 +1,14 @@ +include ../../config.mk + +all: Hexacopter.so + +clean: + rm -f *.c *.so + +hexacopter.c: hexacopter.vala + $(VALAC) --pkg gmodule-2.0 --pkg posix --pkg linux -C $< ../copter-model.vala + +Hexacopter.so: hexacopter.c + $(CC) -shared -fPIC `pkg-config --cflags --libs glib-2.0 gobject-2.0 gmodule-2.0` -o $@ $< + +.PHONY: all clean |