summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1e319443508f03dc01611bb62d1d3c00fdfd13f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
TARGET	=	tll-snes.sfc
LIBS	=	main.lib

TARGET: main.lib
	casm link.asm

main.lib: main.asm
	casm main.asm

clean:
	rm -f $(TARGET) $(LIBS)