source: roaraudio/plugins/ao/Makefile @ 2570:2e2f30d32a85

Last change on this file since 2570:2e2f30d32a85 was 2383:1e4a89fc1ba7, checked in by phi, 15 years ago

updated plugins to new Makefile.inc

File size: 579 bytes
RevLine 
[0]1TARGET=libroar.so
[1723]2OBJ=ao_roar.o
[0]3
[1723]4include ../../Makefile.conf
[2383]5include ../../Makefile.inc
[1721]6include Makefile.conf
7
[1723]8#DEFINES=-DDEBUG
[1729]9CFLAGS += -g -Wall -O2 -I../../include $(DEFINES) $(INCLUDE) $(INCPATH) $(SHARED_CF) $(fPIC) $(AO_CFLAGS)
[1732]10LDFLAGS = -g $(SHARED) $(LDPATH) -L../../lib
[2383]11LIBS    = $(LIBROAR) $(AO_LIBS)
[1723]12
[0]13all: ${TARGET}
14clean:
[1724]15        rm -f ${TARGET} *.o tests tests.c
[0]16new: clean all
17
18install: libroar.so
19        cp libroar.so ${INSTALL_DIR}
[1049]20semi-install: libroar.so
[1706]21        ln -fs `pwd`/libroar.so ${INSTALL_DIR}
[0]22
[1723]23libroar.so: $(OBJ)
[1732]24        $(CC) $(LDFLAGS) -o libroar.so $(OBJ) $(LIBS)
[0]25
26ao_roar.c:
Note: See TracBrowser for help on using the repository browser.