source: roaraudio/roarfish/Makefile @ 4748:d7be1c18ccb5

Last change on this file since 4748:d7be1c18ccb5 was 4748:d7be1c18ccb5, checked in by phi, 13 years ago

updated configure script to honor LDFLAGS and added --opti to set optimizer level (Closes: #27)

File size: 427 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 $(OPTI_O) $(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.