diff options
| author | Mike Pavone <pavone@retrodev.com> | 2012-12-08 02:00:54 -0800 |
|---|---|---|
| committer | Mike Pavone <pavone@retrodev.com> | 2012-12-08 02:00:54 -0800 |
| commit | 0fe3c72239c1bc454965bfe6877307667135bbac (patch) | |
| tree | 84eaf7aa383791b430730d2a2e4bed2c0d9f9dad /Makefile | |
| parent | 97d78d6e0c9cebc49ccb61b57d7944db7a739df6 (diff) | |
Mostly broken VDP core and savestate viewer
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,5 +1,6 @@ +LIBS=sdl -all : dis trans +all : dis trans stateview dis : dis.o 68kinst.o $(CC) -o dis dis.o 68kinst.o @@ -7,6 +8,9 @@ dis : dis.o 68kinst.o trans : trans.o 68kinst.o gen_x86.o m68k_to_x86.o runtime.o mem.o $(CC) -o trans trans.o 68kinst.o gen_x86.o m68k_to_x86.o runtime.o mem.o +stateview : stateview.o vdp.o render_sdl.o + $(CC) -o stateview stateview.o vdp.o render_sdl.o `pkg-config --libs $(LIBS)` + test_x86 : test_x86.o gen_x86.o $(CC) -o test_x86 test_x86.o gen_x86.o @@ -17,10 +21,10 @@ gen_fib : gen_fib.o gen_x86.o mem.o $(CC) -c -o $@ $< %.o : %.c - $(CC) -ggdb -std=gnu99 -c -o $@ $< + $(CC) -ggdb -std=gnu99 `pkg-config --cflags-only-I $(LIBS)` -c -o $@ $< %.bin : %.s68 vasmm68k_mot -Fbin -m68000 -spaces -o $@ $< clean : - rm -rf dis trans test_x86 gen_fib *.o + rm -rf dis trans stateview test_x86 gen_fib *.o |
