From c59aa8ffdf8a3f4cbd274e2f2992b5acd6d1dda4 Mon Sep 17 00:00:00 2001 From: cuz Date: Wed, 14 Jun 2000 21:14:47 +0000 Subject: [PATCH] Fixed makefile to use new paths git-svn-id: svn://svn.cc65.org/cc65/trunk@84 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- samples/Makefile | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/samples/Makefile b/samples/Makefile index 3cf199f28..997c88bc2 100644 --- a/samples/Makefile +++ b/samples/Makefile @@ -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 -- 2.39.5