- When trying to delete a line number including 0x0d such as 13, the program took a broken bug
- Change processing system from Turbo C2.0 to Visual C ++ 1.51 - Significantly improved loading speed - Only the .wb entrance menu is displayed - Sample game STAR WITCH (star.wb, star.txt) attached Version 0.04 - from wonbe004.lzh
This commit is contained in:
31
makefile
31
makefile
@@ -1,23 +1,34 @@
|
||||
INCLUDE=C:\vshare\ww\dev\WWitch\include
|
||||
LIB=..\COMMON
|
||||
|
||||
# start up routine
|
||||
C0WW_JAPANESE2=..\common\c0wwjpn2.obj
|
||||
LIBS=libww.lib runtime.lib
|
||||
|
||||
C0WW=$(C0WW_JAPANESE2)
|
||||
LINKER=..\..\vc15\bin\link
|
||||
CC=..\..\vc15\bin\cl
|
||||
ASM=..\..\vc15\bin\masm
|
||||
|
||||
LIBWW=@..\common\libww.rsp
|
||||
|
||||
CFLAGS=-DWW -ms -zPCGROUP -zSDGROUP -zGDGROUP
|
||||
CFLAGS=/ASw /O /Gs /DWW
|
||||
AFLAGS=-Mx -DDISPLAY_MODE_JAPANESE1
|
||||
LFLAGS=/NOD /NOI /MAP
|
||||
|
||||
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.bin: wonbe.obj vc15_rt.obj
|
||||
$(LINKER) @<<
|
||||
$(LFLAGS) vc15_rt.obj wonbe.obj,wonbe.sss,wonbe.map,$(LIBS);
|
||||
<<
|
||||
echo 0000 >0000.sss
|
||||
exe2bin wonbe.sss wonbe.bin <0000.sss
|
||||
echo remove temp file
|
||||
del 0000.sss
|
||||
del wonbe.sss
|
||||
|
||||
wonbe.obj: wonbe.c
|
||||
tcc -c $(CFLAGS) $(DEFINES) -IC:\vshare\ww\dev\WWitch\include wonbe.c
|
||||
$(CC) -c $(CFLAGS) wonbe.c
|
||||
|
||||
vc15_rt.obj: vc15_rt.asm
|
||||
$(ASM) $(AFLAGS) vc15_rt.asm;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user