summaryrefslogtreecommitdiffstats
path: root/src/pmqtest/Makefile
blob: 0902c9b0352bf6bdfa69dde5095e4b7c2e18a3ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS += -Wall -O2
LDFLAGS += -lpthread

all:	pmqtest
	@echo Done

pmqtest.o: pmqtest.c

pmqtest:

clean:
	@rm -f *.o

tar:	clean
	@rm -f pmqtest
	$(shell bn=`basename $$PWD`; cd ..; tar -zcf $$bn.tgz $$bn)