aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-10-06 03:31:27 -0400
committerJesse Luehrs <doy@tozt.net>2014-10-06 03:31:27 -0400
commitae6804de4a6607e67c7dd54e7d0a03b77c651245 (patch)
tree6d3f7a73103a80df8857e764337bd25ad8740ad4 /Makefile
parente41acefb3a71bfa430768b8f0766ba150137a748 (diff)
downloadnes-snake-ae6804de4a6607e67c7dd54e7d0a03b77c651245.tar.gz
nes-snake-ae6804de4a6607e67c7dd54e7d0a03b77c651245.zip
copy over some changes from the project skeleton
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b3bfaac..4353c6b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
NAME = snake
-OBJS = snake.o
+OBJS = main.o
CC = wla-6502
LD = wlalink
@@ -15,11 +15,11 @@ $(NAME).nes: $(NAME).rom header.bin
$(NAME).rom: $(OBJS) linkfile
$(LD) $(LDFLAGS) linkfile $@
-snake.o: snake.chr
-
%.o: %.s
$(CC) $(CFLAGS) -o $<
+main.o: sprites.chr
+
run: $(NAME).nes
fceux $(NAME).nes