summaryrefslogtreecommitdiffstats
path: root/reset/Makefile
blob: 9f796b7102da272dbb846d228fafb5f1ccf3e86d (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`pg_config --includedir` -L`pg_config --libdir` -lpq

DESTDIR = /usr/local/bin
BIN = reset

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


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