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