diff net-traffic/Makefile @ 10:e686bc92c7d8

revamp for new subdir structure and configure script
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 15 May 2024 01:44:46 +0000
parents Makefile@c00510e1ae8b
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/net-traffic/Makefile	Wed May 15 01:44:46 2024 +0000
@@ -0,0 +1,18 @@
+PROGS=	rtp-stream-gen udp-test-sink
+
+include ../config.defs
+
+all:	${PROGS}
+
+rtp-stream-gen:	rtp-stream-gen.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+udp-test-sink:	udp-test-sink.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+install:
+	mkdir -p ${DESTDIR}${bindir}
+	install -c ${PROGS} ${DESTDIR}${bindir}
+
+clean:
+	rm -f *.o *.out ${PROGS}