]> git.sur5r.net Git - cc65/commitdiff
Add definitions for tools so the makefile is useful by itself.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 26 Oct 2004 18:58:48 +0000 (18:58 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 26 Oct 2004 18:58:48 +0000 (18:58 +0000)
Added the get_tv module.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3258 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/vic20/Makefile

index d743243e6e9e30f76a5a5c5d104a2b3592181022..7027185b719116fd9f67f4f83e093b89ab62521b 100644 (file)
@@ -4,6 +4,18 @@
 
 .SUFFIXES: .o .s .c
 
+#--------------------------------------------------------------------------
+# Programs and flags
+
+SYS = vic20
+
+AS = ../../src/ca65/ca65
+CC = ../../src/cc65/cc65
+LD = ../../src/ld65/ld65
+
+AFLAGS=-t $(SYS) -I../../asminc
+CFLAGS=-Osir -g -T -t $(SYS) --forget-inc-paths -I . -I ../../include
+
 #--------------------------------------------------------------------------
 # Rules
 
@@ -34,6 +46,7 @@ OBJS =        _scrsize.o      \
        color.o         \
        conio.o         \
        cputc.o         \
+       get_tv.o        \
        joy_stddrv.o    \
        kbhit.o         \
         kernal.o        \