source: roaraudio/libroardsp/Makefile @ 650:032c1210229b

Last change on this file since 650:032c1210229b was 650:032c1210229b, checked in by phi, 16 years ago

added Makefile

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