trx/Makefile

26 lines
315 B
Makefile
Raw Normal View History

2009-09-05 00:04:44 +02:00
-include .config
CFLAGS+=-MMD -Wall
2009-09-11 17:40:27 +02:00
LDLIBS_ASOUND?=-lasound
2012-07-21 17:14:13 +02:00
LDLIBS_OPUS?=-lopus
2009-09-11 17:40:27 +02:00
LDLIBS_ORTP?=-lortp
2012-07-21 17:14:13 +02:00
LDLIBS+=$(LDLIBS_ASOUND) $(LDLIBS_OPUS) $(LDLIBS_ORTP)
2009-09-11 17:40:27 +02:00
2009-09-05 00:04:44 +02:00
.PHONY: all clean
all: rx tx
2009-09-11 17:40:27 +02:00
rx: rx.o device.o sched.o
2009-09-05 00:04:44 +02:00
tx: tx.o device.o sched.o
clean:
rm -f *.o
rm -f *.d
rm -f tx
rm -f rx
-include *.d