1
0
mirror of http://www.pogo.org.uk/~mark/trx.git synced 2024-11-22 02:15:05 +01:00
trx/Makefile

25 lines
318 B
Makefile
Raw Normal View History

2009-09-05 00:04:44 +02:00
-include .config
CFLAGS+=-MMD -Wall
.PHONY: all clean
all: rx tx
rx: rx.o device.o jitter.o sched.o
rx: LDLIBS+=-lcelt -lasound
tx: tx.o device.o sched.o
tx: LDLIBS+=-lcelt -lasound
test-jitter: test-jitter.o jitter.o
clean:
rm -f *.o
rm -f *.d
rm -f tx
rm -f rx
rm -f test-jitter
-include *.d