1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +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 # Enter the target system here
SYS = c64 SYS = c64
CRT0 = ../lib/$(SYS).o CRT0 = ../libsrc/$(SYS).o
CLIB = ../lib/$(SYS).lib CLIB = ../libsrc/$(SYS).lib
CC = ../cc65/cc65 CC = ../src/cc65/cc65
CL = ../cl65/cl65 CL = ../src/cl65/cl65
AS = ../binutils/ca65/ca65 AS = ../src/ca65/ca65
LD = ../binutils/ld65/ld65 LD = ../src/ld65/ld65
C1541 = c1541 C1541 = c1541
.c.o: .c.o:
@echo $< @echo $<
@$(CL) -c -Oirs -t $(SYS) -I../include/ $< @$(CC) -g -Oirs -t $(SYS) -I../include/ $<
@$(AS) $(basename $<).s
.s.o: .s.o:
@echo $< @echo $<
@$(CL) -c $(basename $<).s @$(AS) $(basename $<).s
.PHONY: all .PHONY: all