summaryrefslogtreecommitdiffstats
path: root/runtime/stpd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/stpd/Makefile')
-rw-r--r--runtime/stpd/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/stpd/Makefile b/runtime/stpd/Makefile
index 3446ac7b..8aaabb49 100644
--- a/runtime/stpd/Makefile
+++ b/runtime/stpd/Makefile
@@ -1,4 +1,4 @@
-all: stpd stp_merge
+all: stpd stp_merge stp_dump
stpd: stpd.c librelay.c
gcc -Wall -O3 -o stpd stpd.c librelay.c -lpthread
@@ -6,5 +6,8 @@ stpd: stpd.c librelay.c
stp_merge: stp_merge.c
gcc -Wall -O3 -o stp_merge stp_merge.c
+stp_dump: stp_dump.c
+ gcc -Wall -O3 -o stp_dump stp_dump.c
+
clean:
/bin/rm -f stpd stp_merge *.o *~