1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-12 12:29:32 +00:00

Fixed makefile to use new paths

git-svn-id: svn://svn.cc65.org/cc65/trunk@84 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-06-14 21:14:47 +00:00
parent 4b1abd7cc9
commit c59aa8ffdf

View File

@ -7,22 +7,23 @@
# Enter the target system here
SYS = c64
CRT0 = ../lib/$(SYS).o
CLIB = ../lib/$(SYS).lib
CC = ../cc65/cc65
CL = ../cl65/cl65
AS = ../binutils/ca65/ca65
LD = ../binutils/ld65/ld65
CRT0 = ../libsrc/$(SYS).o
CLIB = ../libsrc/$(SYS).lib
CC = ../src/cc65/cc65
CL = ../src/cl65/cl65
AS = ../src/ca65/ca65
LD = ../src/ld65/ld65
C1541 = c1541
.c.o:
@echo $<
@$(CL) -c -Oirs -t $(SYS) -I../include/ $<
@$(CC) -g -Oirs -t $(SYS) -I../include/ $<
@$(AS) $(basename $<).s
.s.o:
@echo $<
@$(CL) -c $(basename $<).s
@$(AS) $(basename $<).s
.PHONY: all