projects
/
vidsys
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
correct window size in banked vbe, and added doublebuffered test
[vidsys]
/
Makefile
1
obj = main.obj vidsys.obj cdpmi.obj drv_vga.obj drv_vbe.obj drv_s3.obj
2
3
bin = test.exe
4
5
CC = wcc386
6
LD = wlink
7
CFLAGS = -d3 -s -zq -bt=dos
8
9
$(bin): $(obj)
10
$(LD) name $@ debug all system dos4g file { $(obj) } $(LDFLAGS)
11
12
.c.obj:
13
$(CC) -fo=$@ $(CFLAGS) $<
14
15
clean: .symbolic
16
del *.obj
17
del $(bin)