diff options
author | Sebastian Reichel <sre@ring0.de> | 2012-10-29 16:57:23 +0100 |
---|---|---|
committer | Sebastian Reichel <sre@ring0.de> | 2012-10-29 16:57:23 +0100 |
commit | ee966044a12eecbb7e9249a719addd44e5c342a8 (patch) | |
tree | 5186711bb70bae55c1d8fe09bc0495f50c03fee4 /sensors | |
parent | 85a3e35b4d11abafac7e4b9d63ec8f6d2f0c869b (diff) | |
download | microcopterd-ee966044a12eecbb7e9249a719addd44e5c342a8.tar.bz2 |
ITG3200 needs access to enums.vala
Diffstat (limited to 'sensors')
-rw-r--r-- | sensors/gyroscope/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sensors/gyroscope/Makefile b/sensors/gyroscope/Makefile index f7add97..09ec45f 100644 --- a/sensors/gyroscope/Makefile +++ b/sensors/gyroscope/Makefile @@ -6,7 +6,7 @@ clean: rm -f *.c *.so itg3200.c: itg3200.vala - $(VALAC) -g --pkg gmodule-2.0 --pkg posix --pkg linux -C $< ../gyroscope.vala ../../hw/i2c-device.vala ../../hw/device.vala + $(VALAC) -g --pkg gmodule-2.0 --pkg posix --pkg linux -C $< ../gyroscope.vala ../../hw/i2c-device.vala ../../hw/device.vala ../../enums.vala ITG3200.so: itg3200.c $(CC) -g -shared -fPIC `pkg-config --cflags --libs glib-2.0 gobject-2.0 gmodule-2.0` -o $@ $< |