]> mj.ucw.cz Git - xsv.git/blob - Makefile
f5fcd54a009ea217d6e38b38ee695f98c99f0d67
[xsv.git] / Makefile
1 PCRE_CFLAGS:=$(shell pcre-config --cflags)
2 PCRE_LIBS:=$(shell pcre-config --libs)
3
4 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Wundef -Wredundant-decls -std=gnu99 $(PCRE_CFLAGS) -g
5 LDLIBS=$(PCRE_LIBS)
6
7 all: xsv
8
9 clean:
10         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core -or -name .depend -or -name .#*`