gba-x3dtest

diff Makefile @ 5:850be43b3135

sdl version
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 16 Jun 2014 22:01:45 +0300
parents b7130fe3f073
children b755fb002f17
line diff
     1.1 --- a/Makefile	Sat Jun 14 03:04:56 2014 +0300
     1.2 +++ b/Makefile	Mon Jun 16 22:01:45 2014 +0300
     1.3 @@ -1,4 +1,4 @@
     1.4 -src = $(wildcard src/*.c)
     1.5 +src = $(filter-out src/main_sdl.c,$(wildcard src/*.c))
     1.6  obj = $(src:.c=.o)
     1.7  dep = $(obj:.o=.d)
     1.8  name = trycatch
     1.9 @@ -18,7 +18,7 @@
    1.10  #opt = -O3 -fomit-frame-pointer -mcpu=arm7tdmi -mtune=arm7tdmi
    1.11  dbg = -g
    1.12  
    1.13 -CFLAGS = $(opt) $(dbg) -pedantic -Wall -I../gbasys/src -I.
    1.14 +CFLAGS = $(opt) $(dbg) -pedantic -Wall -I../gbasys/src
    1.15  LDFLAGS = ../gbasys/libgbasys.a -lm
    1.16  EMUFLAGS = -T 100 -f 1
    1.17