summaryrefslogtreecommitdiffstats
path: root/runtime/stpd/Makefile
blob: 3446ac7b469cccdc54b0824ad9ec4c6ee970a66f (plain)
1
2
3
4
5
6
7
8
9
10
all: stpd stp_merge

stpd: stpd.c librelay.c
	gcc -Wall -O3 -o stpd stpd.c librelay.c -lpthread

stp_merge: stp_merge.c
	gcc -Wall -O3 -o stp_merge stp_merge.c

clean:
	/bin/rm -f stpd stp_merge *.o *~