- Change the value when the comparison operator is established from 1 to -1 - Change prompt to OK - Fixed a bug that negative numbers were output as positive numbers by print / debug - Changed so that loop can escape in next even if for closing price does not match exactly Version 0.03 - from wonbe003.lzh
24 lines
429 B
Makefile
24 lines
429 B
Makefile
|
|
# start up routine
|
|
C0WW_JAPANESE2=..\common\c0wwjpn2.obj
|
|
|
|
C0WW=$(C0WW_JAPANESE2)
|
|
|
|
LIBWW=@..\common\libww.rsp
|
|
|
|
CFLAGS=-DWW -ms -zPCGROUP -zSDGROUP -zGDGROUP
|
|
|
|
all: wonbe.fx
|
|
|
|
wonbe.fx: wonbe.bin
|
|
mkfent wonbe.cf
|
|
|
|
wonbe.bin: wonbe.obj
|
|
tlink /m /c $(C0WW) wonbe, wonbe, wonbe, $(LIBWW)
|
|
exe2fbin wonbe.exe wonbe.bin
|
|
|
|
wonbe.obj: wonbe.c
|
|
tcc -c $(CFLAGS) $(DEFINES) -IC:\vshare\ww\dev\WWitch\include wonbe.c
|
|
|
|
|