source: roaraudio/libroararts/Makefile @ 462:08db2c1fa036

Last change on this file since 462:08db2c1fa036 was 462:08db2c1fa036, checked in by phi, 16 years ago

started libroararts

File size: 344 bytes
Line 
1TARGETS=libartsc.so
2OBJS=libartsc.o
3
4DEFINES        = -DDEBUG
5INCLUDE = -I../include -I../include/libroarpulse
6CFLAGS  = -g -Wall -O2 $(DEFINES) $(INCLUDE)
7LDFLAGS = -g -lroar -L../lib/
8
9all: ${TARGETS}
10        cp -v ${TARGETS} ../lib/
11clean:
12        rm -f ${TARGETS} *.o
13new: clean all
14
15libartsc.so: ${OBJS}
16        ${CC} ${LDFLAGS} -shared -o libartsc.so ${OBJS}
Note: See TracBrowser for help on using the repository browser.