An emulator, assembler, and disassembler for the Sega Game Gear
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # Copyright (C) 2014-2016 Ben Kurtovic <ben.kurtovic@gmail.com>
- # Released under the terms of the MIT License. See LICENSE for details.
-
- RUNNER = runner
- COMPONENTS = cpu vdp psg asm dis integrate
-
- .PHONY: all clean $(COMPONENTS)
-
- all: $(COMPONENTS)
-
- clean:
- $(RM) $(RUNNER)
- $(RM) asm/*.gg
-
- $(RUNNER): $(RUNNER).c
- $(CC) $(FLAGS) $< -o $@
-
- $(COMPONENTS): $(RUNNER)
- ./$(RUNNER) $@
-
- asm: asm-unarchive
-
- asm-archive:
- tar -czf asm/roms.tar.gz asm/*.gg
-
- asm-unarchive:
- tar -xf asm/roms.tar.gz
|