source: roaraudio/plugins/xine/Makefile

tip
Last change on this file was 5851:735e3e6b9d59, checked in by phi, 11 years ago

make more use out of $(DEBUG_g) and $(Wall)

File size: 541 bytes
RevLine 
[467]1TARGET=xineplug_ao_out_roar.so
2
3OBJ=roar.o
4
5
6XINE_LIBS=`xine-config --libs`
7XINE_CFLAGS=`xine-config --cflags`
8INSTALL_DIR=`xine-config --plugindir`
9
10#DEFINES=-DDEBUG
[5851]11CFLAGS += $(DEBUG_g) $(Wall) -O2 $(DEFINES) $(INCLUDE) $(fPIC) $(XINE_CFLAGS)
12LDFLAGS+= $(DEBUG_g) $(Wall) -shared -lroar $(XINE_LIBS)
[467]13
14all: ${TARGET}
15clean:
16        rm -f ${TARGET} *.o
17new: clean all
18
19install: ${TARGET}
[3095]20        mkdir -p ${DESTDIR}${INSTALL_DIR}
[2571]21        cp ${TARGET} ${DESTDIR}${INSTALL_DIR}/
[467]22
23xineplug_ao_out_roar.so: $(OBJ)
24        $(CC) $(LDFLAGS) -o xineplug_ao_out_roar.so $(OBJ)
Note: See TracBrowser for help on using the repository browser.