summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-07-10 09:38:05 -0700
committerMike Pavone <pavone@retrodev.com>2013-07-10 09:38:05 -0700
commit28b8256fddf53446898120f9b51a43f132d946bb (patch)
tree1b87d811230919a9e7593ee2623940518f6a5376 /Makefile
parent5d758f6938dc3c73e2c858255748f781aac17010 (diff)
Add config file parser and default config file
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b593bb9..7c38e95 100644
--- a/Makefile
+++ b/Makefile
@@ -18,8 +18,8 @@ AUDIOOBJS=ym2612.o psg.o wave.o
all : dis trans stateview blastem
-blastem : blastem.o vdp.o render_sdl.o io.o $(M68KOBJS) $(Z80OBJS) $(TRANSOBJS) $(AUDIOOBJS)
- $(CC) -ggdb -o blastem blastem.o vdp.o render_sdl.o io.o $(M68KOBJS) $(Z80OBJS) $(TRANSOBJS) $(AUDIOOBJS) $(LDFLAGS)
+blastem : blastem.o vdp.o render_sdl.o io.o config.o tern.o $(M68KOBJS) $(Z80OBJS) $(TRANSOBJS) $(AUDIOOBJS)
+ $(CC) -ggdb -o blastem blastem.o vdp.o render_sdl.o io.o config.o tern.o $(M68KOBJS) $(Z80OBJS) $(TRANSOBJS) $(AUDIOOBJS) $(LDFLAGS)
dis : dis.o 68kinst.o
$(CC) -o dis dis.o 68kinst.o