source: roaraudio/plugins/audacious/Makefile @ 1708:45c1c4cadf2b

Last change on this file since 1708:45c1c4cadf2b was 1708:45c1c4cadf2b, checked in by phi, 15 years ago

added semi-install target

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