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

all:	svsematest
	@echo Done

svsematest.o: svsematest.c

svsematest:

clean:
	@rm -f *.o

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