]> mj.ucw.cz Git - misc.git/blob - ursaryd/Makefile
Added experimental utility for controlling jackd in the Ursarium
[misc.git] / ursaryd / Makefile
1 JACK_CFLAGS:=$(shell pkg-config --cflags jack)
2 JACK_LIBS:=$(shell pkg-config --libs jack)
3
4 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Wundef -Wredundant-decls -std=gnu99 $(JACK_CFLAGS)
5 LDLIBS=$(JACK_LIBS)
6
7 all: jt
8
9 clean:
10         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name .depend -or -name .#*`