mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-16 11:30:55 +00:00
25 lines
307 B
Makefile
25 lines
307 B
Makefile
include ../../../Makefile.inc
|
|
|
|
LINKER_SCRIPTS = ../../../linker_scripts
|
|
|
|
all: TITLE
|
|
|
|
####
|
|
|
|
TITLE: title.o
|
|
ld65 -o TITLE title.o -C $(LINKER_SCRIPTS)/apple2_d00.inc
|
|
|
|
title.o: title.s loader.s
|
|
ca65 -o title.o title.s -l title.lst
|
|
|
|
#####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst TITLE
|
|
|
|
#####
|
|
|
|
distclean:
|
|
make clean
|
|
|