diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-04-23 17:34:01 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-04-23 17:34:01 -0700 |
commit | a9e7727e7f66c0877957b469e172ed2f70aa5d64 (patch) | |
tree | 73f51f7f1c587d24b38cc1f32f3bca79c9c3b04b /Makefile | |
parent | 6706eb2b549729c23c8dd919d28f0d2fb32776a9 (diff) |
Inclue menu.bin in release directories. Added a Windows RC file and icon
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -125,6 +125,10 @@ else MAINOBJS+= $(Z80OBJS) endif +ifeq ($(OS),Windows) +MAINOBJS+= res.o +endif + ALL=dis$(EXE) zdis$(EXE) stateview$(EXE) vgmplay$(EXE) blastem$(EXE) ifneq ($(OS),Windows) ALL+= termhelper @@ -205,6 +209,8 @@ vos_prog_info : vos_prog_info.o vos_program_module.o %.bin : %.sz8 vasmz80_mot -Fbin -spaces -o $@ $< +res.o : blastem.rc + wine windres blastem.rc res.o arrow.tiles : arrow.png cursor.tiles : cursor.png |