source: roaraudio/libroardsp/Makefile @ 660:efe0d522394c

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

added filter.c and filterchain.c

File size: 490 bytes
Line 
1include ../Makefile.conf
2
3TARGETS=libroardsp.so
4OBJS=libroardsp.o filter.o filterchain.o
5FILTER=lowp.o highp.o
6
7#DEFINES        = -DDEBUG
8INCLUDE = -I../include -I../include/libroardsp
9CFLAGS  = -g -Wall -O2 $(DEFINES) $(INCLUDE) $(INCPATH) -fPIC
10LDFLAGS = -g -shared -L../lib/ $(LDPATH) $(lib_dnet) -lm -lroar
11
12all: ${TARGETS}
13        cp $(cp_v) ${TARGETS} ../lib/
14clean:
15        rm -f ${TARGETS} *.o
16new: clean all
17
18libroardsp.so: ${OBJS} $(FILTER)
19        ${CC} ${LDFLAGS} -o libroardsp.so ${OBJS} $(FILTER)
Note: See TracBrowser for help on using the repository browser.