MOVES/BGI/MAKEFILE.TWK
2021-09-08 21:30:32 +02:00

19 lines
605 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## Makefile for initsvga.c (Tweaked drivers)
## Demonstrates use of registerfarbgidriver
PROG = initsvga # Program name to compile
CC = tcc # Command-line compiler (tcc/bcc)
LIB = e:\lang\lib # Library directory
INCLUDE = e:\lang\include # Include directory
MODEL = s # Memory Model
$(PROG).exe: $(PROG).c twk256f.obj twk16f.obj
$(CC) -L$(LIB) -I$(INCLUDE) -m$(MODEL) $(PROG).c \
twk256f.obj twk16f.obj graphics.lib
twk256f.obj : twk256.bgi
bgiobj /F twk256.bgi twk256f.obj _twk256_fdriver TWK256_TEXT
twk16f.obj : twk16.bgi
bgiobj /F twk16.bgi twk16f.obj _twk16_fdriver TWK16_TEXT