source: roaraudio/libroar/Makefile @ 0:2a41d2f42394

Last change on this file since 0:2a41d2f42394 was 0:2a41d2f42394, checked in by phi, 16 years ago

Initial revision

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