source: roaraudio/roarfish/Makefile @ 4632:420efd0030ed

Last change on this file since 4632:420efd0030ed was 4632:420efd0030ed, checked in by phi, 13 years ago

include config files

File size: 421 bytes
RevLine 
[4632]1include ../Makefile.conf
2include ../Makefile.inc
3
[11]4TARGETS=roarfish
5
[12]6OBJ=roarfish.o play.o
[11]7
8#DEFINES        = -DDEBUG
9INCLUDE = -I../include -I./include
[726]10CFLAGS += -g -Wall -O2 $(DEFINES) $(INCLUDE)
[1733]11LDFLAGS = -g -L../lib/ $(LDPATH)
12LIBS    = -lroar -lfishsound -loggz
[11]13
14all: ${TARGETS}
[475]15        cp $(cp_v) ${TARGETS} ../lib/
[11]16clean:
17        rm -f ${TARGETS} *.o
18new: clean all
19
20roarfish: ${OBJ}
[1733]21        ${CC} ${LDFLAGS} -o roarfish ${OBJ} ${LIBS}
Note: See TracBrowser for help on using the repository browser.