summaryrefslogtreecommitdiffstats
path: root/reset/Makefile
blob: afb19bdebefc4a1349ba99dc60ce081613405e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# House of mozart statistic reseter (c) 2003 Oliver
# -================================================-

CC = gcc
CFLAGS += -O2 -I`/usr/local/pgsql/bin/pg_config --includedir` -L`/usr/local/pgsql/bin/pg_config --libdir` -lpq

DESTDIR = /usr/local/bin
BIN = reset

all:
	$(CC) $(CFLAGS) reset.c -o $(BIN)


clean:
	rm -rf *~ *.o $(BIN)