diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-07-10 09:38:05 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-07-10 09:38:05 -0700 |
commit | 28b8256fddf53446898120f9b51a43f132d946bb (patch) | |
tree | 1b87d811230919a9e7593ee2623940518f6a5376 /Makefile | |
parent | 5d758f6938dc3c73e2c858255748f781aac17010 (diff) |
Add config file parser and default config file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |