source: roaraudio/libroaresd/Makefile @ 475:c5c9b2f8b848

Last change on this file since 475:c5c9b2f8b848 was 475:c5c9b2f8b848, checked in by phi, 16 years ago

use cp -v only if cp accepts -v

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