* Add gitattributes to handle line endings. * Import the unmodified LTEMM source. From https://www.lo-tech.co.uk/wiki/LTEMM.EXE. * Add DOSBox and TASM for build. * Add build script for LTEMM. * Modity LTEMM driver for XTMax. * Import the unmodified SDPP source. From https://forum.vcfed.org/index.php?threads/sd-card-to-parallel-port-driver-for-msdos-ver-1-1.42008/. * Add Borland C++ 3.1 (Minimal) for build. * Add build script for SDPP. * Modify SDPP driver for XTMax. * Commit pre-built binaries for LTEMM and SDPP. * Reorganize the drivers into a new folder.
27 lines
628 B
Plaintext
27 lines
628 B
Plaintext
# Makefile for the TU58 Device Driver project - RLA [12-Aug-94]
|
|
|
|
CC=bcc -c -ms -Z -O -Ol -Oe
|
|
ASM=tasm -mx
|
|
|
|
.c.obj:
|
|
$(CC) $<
|
|
|
|
.asm.obj:
|
|
$(ASM) $*
|
|
|
|
sd.sys: header.obj cprint.obj sd.obj sdmm.obj driver.obj
|
|
tlink -t -m -s -n header cprint sd sdmm driver, sd.sys
|
|
|
|
sd.com: header.obj cprint.obj sd.obj sdmm.obj driver.obj
|
|
tlink -t -m -s -n header cprint sd sdmm driver, sd.sys
|
|
rename sd.sys sd.com
|
|
|
|
clean:
|
|
del *.obj
|
|
del sd.sys
|
|
|
|
driver.obj: cprint.c sdmm.c driver.c cprint.c cprint.h standard.h driver.h sd.h
|
|
sd.obj: sd.c sd.h standard.h driver.h
|
|
sdmm.obj: sdmm.c diskio.h integer.h
|
|
header.obj: header.asm
|