1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

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
This commit is contained in:
cuz 2004-10-26 18:58:48 +00:00
parent aef7a94730
commit 75f7b6cf4e

View 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 \