source: roaraudio/roard/Makefile @ 485:efebd5911d51

Last change on this file since 485:efebd5911d51 was 485:efebd5911d51, checked in by phi, 16 years ago

added LDPATH to all Makefiles

File size: 798 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
7include ../Makefile.conf
8
9CELT_PREFIX=/home/phi/superhome/xiph/celt-test/
10#DEFINES        = -DDEBUG
11#DEFINES        = -DMONITOR_LATENCY
12INCLUDE = -I../include -I./include
13CFLAGS  = -g -Wall -O2 $(DEFINES) $(INCLUDE) -I$(CELT_PREFIX)/include
14LDFLAGS = -g -L../lib/ $(LDPATH) -lroar $(lib_esd) $(lib_ao) $(lib_vorbisfile) -lm -L$(CELT_PREFIX)/lib $(lib_celt) $(lib_speex)
15
16all: ${TARGETS}
17        cp $(cp_v) ${TARGETS} ../lib/
18clean:
19        rm -f ${TARGETS} *.o
20new: clean all
21
22roard: ${OBJ} ${DRV} ${CF}
Note: See TracBrowser for help on using the repository browser.