From: cuz Date: Tue, 26 Oct 2004 18:58:48 +0000 (+0000) Subject: Add definitions for tools so the makefile is useful by itself. X-Git-Tag: V2.12.0~577 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=75f7b6cf4e6a6f3698fc2cb4014d394c792e00f7;p=cc65 Add definitions for tools so the makefile is useful by itself. Added the get_tv module. git-svn-id: svn://svn.cc65.org/cc65/trunk@3258 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/vic20/Makefile b/libsrc/vic20/Makefile index d743243e6..7027185b7 100644 --- a/libsrc/vic20/Makefile +++ b/libsrc/vic20/Makefile @@ -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 \