source: roaraudio/plugins/xmms/Makefile @ 1106:b71671032077

Last change on this file since 1106:b71671032077 was 1106:b71671032077, checked in by phi, 15 years ago

added all.h and gui.c, added mor config vars, read parts of the config foem XMMS configfile

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