]> mj.ucw.cz Git - ursary.git/blobdiff - Makefile
Better IR control of lights
[ursary.git] / Makefile
index 110823b29c749d52f53295ac8a441ef67d5e7396..b4af2b03de83ae21f73de2b9b7a3d65cd58232be 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,34 @@
-JACK_CFLAGS:=$(shell pkg-config --cflags jack)
-JACK_LIBS:=$(shell pkg-config --libs jack)
+# PC=PKG_CONFIG_PATH=/home/mj/src/libucw/run/lib/pkgconfig pkg-config
+PC=PKG_CONFIG_PATH=/opt/lib/pkgconfig pkg-config
 
-CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Wundef -Wredundant-decls -std=gnu99 $(JACK_CFLAGS)
-LDLIBS=$(JACK_LIBS)
+LIBUSB_CFLAGS := $(shell $(PC) --cflags libusb-1.0)
+LIBUSB_LIBS := $(shell $(PC) --libs libusb-1.0)
 
-all: jt
+LIBPULSE_CFLAGS := $(shell $(PC) --cflags libpulse)
+LIBPULSE_LIBS := $(shell $(PC) --libs libpulse)
+
+LIBUCW_CFLAGS := $(shell $(PC) --cflags libucw)
+LIBUCW_LIBS := $(shell $(PC) --libs libucw)
+
+CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Wundef -Wno-sign-compare -Wredundant-decls -std=gnu99 $(LIBUCW_CFLAGS) $(LIBUSB_CFLAGS) $(LIBPULSE_CFLAGS) -g2
+LDLIBS=$(LIBUCW_LIBS) $(LIBUSB_LIBS) $(LIBPULSE_LIBS) -lmosquitto
+
+all: ursaryd
+
+ursaryd: ursaryd.o mpd.o nocturn.o pulse.o pulse-ucw.o usb.o mqtt.o
+
+ursaryd.o: ursaryd.c ursaryd.h usb.h
+mpd.o: mpd.c ursaryd.h
+nocturn.o: nocturn.c ursaryd.h usb.h
+pulse.o: pulse.c ursaryd.h
+pulse-ucw.o: pulse-ucw.c ursaryd.h
+usb.o: usb.c ursaryd.h usb.h
+mqtt.o: mqtt.c ursaryd.h
 
 clean:
        rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name .depend -or -name .#*`
+       rm -f ursaryd
+
+install: all
+       install -m 755 ursaryd /usr/local/sbin/
+       # install -m 755 burrow-ursary.service /etc/systemd/system/