aboutsummaryrefslogtreecommitdiff
path: root/space/Makefile
blob: e38607c666bab415b9023665a5ab04016246a080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CC65     ?= cl65
CCOPTS   ?= --verbose --target nes

.PHONY: all
all: clean build

.PHONY: clean
clean:
	@rm -f space.nes

.PHONY: build
build: space.nes

%.nes: src/%.s
	$(CC65) $(CCOPTS) $< -o $@