source: roaraudio/libroarsndio/Makefile @ 2382:b47795155ee5

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

updated comp libs to new Makefile.inc

File size: 676 bytes
Line 
1include ../Makefile.conf
2include ../Makefile.inc
3
4SLIB=libroarsndio$(SHARED_SUFFIX)
5
6TARGETS=$(SLIB) libroarsndio.a
7OBJS=libroarsndio.o para.o stream.o events.o volume.o midi.o
8
9#DEFINES        = -DDEBUG
10INCLUDE = -I../include -I../include/libroarsndio
11CFLAGS += -g -Wall -O2 $(DEFINES) $(INCLUDE) $(INCPATH) $(SHARED_CF) $(fPIC)
12LDFLAGS = -g $(SHARED) $(LDPATH) -L../lib/
13LIBS    = $(LIBROAR)
14
15all: ${TARGETS}
16        rm -f ../lib/${SLIB} 2> /dev/null || true
17        cp $(cp_v) ${TARGETS} ../lib/
18clean:
19        rm -f ${TARGETS} *.o
20new: clean all
21
22$(SLIB): ${OBJS}
23        ${CC} ${LDFLAGS} -o $(SLIB) ${OBJS} ${LIBS}
24libroarsndio.a: ${OBJS}
25        ${AR} cru libroarsndio.a ${OBJS}
26        ${RANLIB} libroarsndio.a
Note: See TracBrowser for help on using the repository browser.