source: roaraudio/plugins/xmms/Makefile @ 1712:0643bf43a304

Last change on this file since 1712:0643bf43a304 was 1707:12b960672988, checked in by phi, 15 years ago

added semi install target

File size: 448 bytes
RevLine 
[452]1TARGET=libroar.so
2
[1106]3OBJ=roar.o gui.o
[452]4
[1056]5include Makefile.conf
[453]6
[457]7#DEFINES=-DDEBUG
[1389]8CFLAGS  = -g -Wall -O2 $(DEFINES) $(INCLUDE) $(fPIC) $(GTK_CFLAFS) $(XMMS_CFLAGS)
[453]9LDFLAGS = -g -shared -lroar $(GTK_LIBS) $(XMMS_LIBS)
[452]10
11all: ${TARGET}
12clean:
13        rm -f ${TARGET} *.o
14new: clean all
15
16install: libroar.so
[453]17        cp libroar.so ${INSTALL_DIR}/
[1707]18semi-install: libroar.so
19        ln -fs `pwd`/libroar.so ${INSTALL_DIR}/
[452]20
21libroar.so: $(OBJ)
22        $(CC) $(LDFLAGS) -o libroar.so $(OBJ)
Note: See TracBrowser for help on using the repository browser.