]> mj.ucw.cz Git - ursary.git/blob - Makefile
110823b29c749d52f53295ac8a441ef67d5e7396
[ursary.git] / 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 .#*`