source: roaraudio/plugins/xmms/Makefile @ 452:2aa895bf169a

Last change on this file since 452:2aa895bf169a was 452:2aa895bf169a, checked in by phi, 16 years ago

started with xmms plugin

File size: 279 bytes
Line 
1TARGET=libroar.so
2
3OBJ=roar.o
4
5CFLAGS  = -g -Wall -O2 $(DEFINES) $(INCLUDE) -fPIC
6LDFLAGS = -g -shared -lroar
7
8all: ${TARGET}
9clean:
10        rm -f ${TARGET} *.o
11new: clean all
12
13install: libroar.so
14        cp libroar.so ${INSTALL_DIR}
15
16libroar.so: $(OBJ)
17        $(CC) $(LDFLAGS) -o libroar.so $(OBJ)
Note: See TracBrowser for help on using the repository browser.