FreeCalypso > hg > rtp-debug-utils
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 9:c00510e1ae8b | 10:e686bc92c7d8 |
|---|---|
| 1 PROGS= rtp-stream-gen udp-test-sink | |
| 2 | |
| 3 include ../config.defs | |
| 4 | |
| 5 all: ${PROGS} | |
| 6 | |
| 7 rtp-stream-gen: rtp-stream-gen.c | |
| 8 ${CC} ${CFLAGS} -o $@ $@.c | |
| 9 | |
| 10 udp-test-sink: udp-test-sink.c | |
| 11 ${CC} ${CFLAGS} -o $@ $@.c | |
| 12 | |
| 13 install: | |
| 14 mkdir -p ${DESTDIR}${bindir} | |
| 15 install -c ${PROGS} ${DESTDIR}${bindir} | |
| 16 | |
| 17 clean: | |
| 18 rm -f *.o *.out ${PROGS} |
