Makefile is now more compatible, whitespace trim.

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@98 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
Nach 2007-11-19 19:58:21 +00:00
parent acf893c0c7
commit 882dcdff9a
7 changed files with 485 additions and 483 deletions

View File

@ -4,7 +4,8 @@ CFLAGS=-W -Wall -Wno-unused -DHAVE_NETINET_IN_H -DHAVE_ARPA_INET_H -DFINAL_VERSI
CXXFLAGS=${CFLAGS}
ASM=nasm
ASMFLAGS=-w-orphan-labels -f elf -DELF -O1 -Isrc/
LFLAGS=-lz -lpng -lSDL -s
LFLAGS=-lz -lpng `sdl-config --libs`
STRIP=strip -s
MAINDIR=src
SDLDIR=src/sdl
@ -50,6 +51,7 @@ ALL: vba
vba: ${OBJECTS} ${LIB}
$(CPPC) -o $@ ${OBJECTS} ${LIB} ${LFLAGS}
$(STRIP) $@
${RESAMPLEDIR}/libresample.a:
make -C ${RESAMPLEDIR} -f Make