source: roaraudio/libroardsp/Makefile @ 691:f2bf0e2577c9

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

some trys to get thinks working under MAC OS X

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