1
0
mirror of synced 2026-03-01 17:47:51 +00:00
Files
MicroCoreLabs.Projects/XTMax/Drivers/SDPP/MAKEFILE
Matthieu Bucchianeri e16aa4c1c5 Update XTSD to use MOVSW.
2025-02-16 15:11:10 -08:00

26 lines
456 B
Plaintext

# Makefile for the TU58 Device Driver project - RLA [12-Aug-94]
CC=bcc -c -ms -Z -O -Ol -Oe
ASM=tasm -mx
DEPS=cprint.c driver.c sd.c sdmm.c cprint.h diskio.h driver.h integer.h sd.h standard.h
all: xtsd.sys
.asm.obj:
$(ASM) $*
xtsd.sys: header.obj $(DEPS)
$(CC) cprint.c
$(CC) sd.c
$(CC) sdmm.c
$(CC) driver.c
tlink -t -m -s -n header cprint sd sdmm driver, $@
clean:
del *.obj
del *.map
del *.sys
header.obj: header.asm