source: roaraudio/roarfish/Makefile @ 4747:8ad3e80c9ded

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

include config files

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