summaryrefslogtreecommitdiffstats
path: root/sensors/compass/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sensors/compass/Makefile')
-rw-r--r--sensors/compass/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/sensors/compass/Makefile b/sensors/compass/Makefile
new file mode 100644
index 0000000..178ae55
--- /dev/null
+++ b/sensors/compass/Makefile
@@ -0,0 +1,14 @@
+include ../../config.mk
+
+all: HMC5843.so
+
+clean:
+ rm -f *.c *.so
+
+hmc5843.c: hmc5843.vala
+ $(VALAC) --pkg gmodule-2.0 --pkg posix --pkg linux -C $< ../compass.vala ../../hw/i2c-device.vala ../../hw/device.vala
+
+HMC5843.so: hmc5843.c
+ $(CC) -shared -fPIC `pkg-config --cflags --libs glib-2.0 gobject-2.0 gmodule-2.0` -o $@ $<
+
+.PHONY: all clean