source: roaraudio/roard/Makefile @ 371:1014cedbeabf

Last change on this file since 371:1014cedbeabf was 371:1014cedbeabf, checked in by phi, 16 years ago

added files for codecfilter_speex

File size: 732 bytes
Line 
1TARGETS=roard
2
3OBJ=roard.o driver.o mixer.o output.o signals.o loop.o clients.o streams.o network.o commands.o req.o sources.o sample.o meta.o codecfilter.o midi.o lib.o
4DRV=driver_esd.o driver_ao.o driver_roar.o driver_raw.o
5CF=codecfilter_cmd.o codecfilter_vorbis.o codecfilter_celt.o codecfilter_speex.o
6
7CELT_PREFIX=/home/phi/superhome/xiph/celt-test/
8#DEFINES        = -DDEBUG
9#DEFINES        = -DMONITOR_LATENCY
10INCLUDE = -I../include -I./include
11CFLAGS  = -g -Wall -O2 $(DEFINES) $(INCLUDE) -I$(CELT_PREFIX)/include
12LDFLAGS = -g -L../lib/ -lroar -lesd -lao -lvorbisfile -lm -L$(CELT_PREFIX)/lib -lcelt -lspeex
13
14all: ${TARGETS}
15        cp -v ${TARGETS} ../lib/
16clean:
17        rm -f ${TARGETS} *.o
18new: clean all
19
20roard: ${OBJ} ${DRV} ${CF}
Note: See TracBrowser for help on using the repository browser.