source: roaraudio/plugins/xmms/Makefile @ 457:60f64b109d75

Last change on this file since 457:60f64b109d75 was 457:60f64b109d75, checked in by phi, 16 years ago

some non working pthread based meta data update code

File size: 527 bytes
Line 
1TARGET=libroar.so
2
3OBJ=roar.o
4
5
6GTK_LIBS=`gtk-config --libs`
7GTK_CFLAFS=`gtk-config --cflags`
8XMMS_LIBS=`xmms-config --libs`
9XMMS_CFLAGS=`xmms-config --cflags`
10INSTALL_DIR=`xmms-config --output-plugin-dir`
11
12#DEFINES=-DDEBUG
13CFLAGS  = -g -Wall -O2 $(DEFINES) $(INCLUDE) -fPIC $(GTK_CFLAFS) $(XMMS_CFLAGS)
14LDFLAGS = -g -shared -lroar $(GTK_LIBS) $(XMMS_LIBS)
15
16all: ${TARGET}
17clean:
18        rm -f ${TARGET} *.o
19new: clean all
20
21install: libroar.so
22        cp libroar.so ${INSTALL_DIR}/
23
24libroar.so: $(OBJ)
25        $(CC) $(LDFLAGS) -o libroar.so $(OBJ)
Note: See TracBrowser for help on using the repository browser.