aboutsummaryrefslogtreecommitdiffstats
path: root/makefile.qcl
blob: c23687647f36eccbd70af2a38bbb50898ea1bc21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#               Microsoft QuickC Makefile for Bywater BASIC Interpreter
#
#		This makefile is for line-oriented QuickC only, not for
#		the QuickC integrated environment. To make the program:
#		type "nmake -f makefile.qcl".
#
#		2015-04-25 Updated for version 3.00 by Howard Wulf, AF5NE
#
PROJ=           bwbasic
CC=             qcl

#
#		These are the normal flags I used to compile bwBASIC:
#
CFLAGS=         -O -AL -W3 -Za -DHAVE_MSDOS
#
#		The following flags can be used for debugging:
#
#CFLAGS=         -Od -AL -W3 -Za -Zr -Zi -DHAVE_MSDOS

LFLAGS=         /NOE /ST:8192

OFILES=         bwbasic.obj bwb_cmd.obj bwb_cnd.obj bwb_dio.obj\
                bwb_exp.obj bwb_fnc.obj bwb_inp.obj bwb_int.obj\
                bwb_prn.obj bwb_stc.obj bwb_str.obj bwb_tbl.obj\
                bwb_var.obj bwd_cmd.obj bwd_fun.obj bwx_tty.obj 

HFILES=         bwbasic.h

all:            $(PROJ).exe

$(OFILES):      $(HFILES) makefile.qcl

$(PROJ).exe:    $(OFILES)
        echo >NUL @<<$(PROJ).crf
bwbasic.obj +
bwb_cmd.obj +
bwb_cnd.obj +
bwb_dio.obj +
bwb_exp.obj +
bwb_fnc.obj +
bwb_inp.obj +
bwb_int.obj +
bwb_prn.obj +
bwb_stc.obj +
bwb_str.obj +
bwb_tbl.obj +
bwb_var.obj +
bwd_cmd.obj +
bwd_fun.obj +
bwx_tty.obj +
$(OBJS_EXT)
$(PROJ).exe

$(LIBS_EXT);
<<
        link $(LFLAGS) @$(PROJ).crf
	erase $(PROJ).crf

# EOF
Un proyecto texto-plano.xyz