summaryrefslogtreecommitdiff
path: root/Makefile
blob: a5301297d7fe11981b145c08f918586e6b3bcf7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
TARGET	=	tll-snes.sfc
LIBS	=	main.lib tiles.lib maps.lib

$(TARGET): $(LIBS) link.asm
	casm link.asm

main.lib: main.asm macros.inc snes.inc tiles.lib maps.lib
	casm main.asm

tiles.lib: tiles.asm
	casm tiles.asm

maps.lib: maps.asm
	casm maps.asm

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