mirror of
https://github.com/Michaelangel007/apple2_hgrbyte.git
synced 2025-01-14 19:29:41 +00:00
17 lines
205 B
Makefile
17 lines
205 B
Makefile
TARGETS = hgr.byte view.dhgr dhgr.byte
|
|
all: $(TARGETS)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) $(TARGETS)
|
|
|
|
hgr.byte: hgr.byte.s
|
|
merlin32 $<
|
|
|
|
view.dhgr: view.dhgr.s
|
|
merlin32 $<
|
|
|
|
dhgr.byte: dhgr.byte.s
|
|
merlin32 $<
|
|
|