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

19 lines
622 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 (SuperVGA 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 svga256f.obj svga16f.obj
$(CC) -L$(LIB) -I$(INCLUDE) -m$(MODEL) $(PROG).c \
svga256f.obj svga16f.obj graphics.lib
svga256f.obj : svga256.bgi
bgiobj /F svga256.bgi svga256f.obj _Svga256_fdriver SVGA256_TEXT
svga16f.obj : svga16.bgi
bgiobj /F svga16.bgi svga16f.obj _Svga16_fdriver SVGA16_TEXT