source: roaraudio/libroar/Makefile @ 1253:b3dc719b129f

Last change on this file since 1253:b3dc719b129f was 1232:c7a504b19d03, checked in by phi, 15 years ago

added files and consts for gnupg pinentry

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