source: roaraudio/libroar/Makefile @ 1255:be5d76395131

Last change on this file since 1255:be5d76395131 was 1255:be5d76395131, checked in by phi, 15 years ago

added vio_cmd.[ch]

File size: 619 bytes
RevLine 
[501]1include ../Makefile.conf
2
[0]3TARGETS=libroar.so
[1255]4VIO=vio.o vio_cmd.o
5OBJS=libroar.o basic.o stream.o simple.o auth.o socket.o ctl.o buffer.o convert.o poly.o meta.o file.o acl.o cdrom.o pinentry.o $(VIO)
[0]6
7#DEFINES        = -DDEBUG
[1]8INCLUDE = -I../include -I../include/libroar
[730]9CFLAGS += -g -Wall -O2 $(DEFINES) $(INCLUDE) $(INCPATH) $(SHARED_CF) -fPIC
[1091]10LDFLAGS = -g $(SHARED) $(LDPATH) $(lib_dnet) $(lib_wsock32) $(lib_ws2_32)
[0]11
12all: ${TARGETS}
[1179]13        rm -f ../lib/${TARGETS} 2> /dev/null || true
[475]14        cp $(cp_v) ${TARGETS} ../lib/
[0]15clean:
16        rm -f ${TARGETS} *.o
17new: clean all
18
19libroar.so: ${OBJS}
20        ${CC} ${LDFLAGS} -o libroar.so ${OBJS}
Note: See TracBrowser for help on using the repository browser.