This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nesgame/Makefile

21 lines
305 B
Makefile
Raw Normal View History

SOURCE=nesgame.S \
include/defines.S \
include/math.S \
include/graphics.S
MAIN_SOURCE=nesgame.S
all: nesgame.nes
nesgame.nes : $(SOURCE)
ophis -o $@ $(MAIN_SOURCE)
.PHONY: test
test: nesgame.nes
fceux nesgame.nes
.PHONY: clean
clean:
rm *nes
tags: $(SOURCE)
find . -name "*S" | xargs etags -a