wonbe/makefile
Kawamata Akira b906d49ca1 - Hirotaka JOE Ohkubo's difference (0.04j4) can be merged with play statement (sound.il required)
- Consider? As the keyword debug
 - Allow goto to be omitted if immediately after it is a decimal integer value
 - Addition of machine language related functions
 - Add tron / troff command (display execution line number)

Version 0.05 - from wonbe005.lzh
2000-12-10 12:00:00 +09:00

35 lines
663 B
Makefile

INCLUDE=C:\vshare\ww\dev\WWitch\include
LIB=..\COMMON
LIBS=libww.lib runtime.lib
LINKER=..\..\vc15\bin\link
CC=..\..\vc15\bin\cl
ASM=..\..\vc15\bin\masm
CFLAGS=/ASw /O /Gs /DWW /DVC15
AFLAGS=-Mx -DDISPLAY_MODE_JAPANESE1
LFLAGS=/NOD /NOI /MAP
all: wonbe.fx
wonbe.fx: wonbe.bin
mkfent wonbe.cf
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
$(CC) -c $(CFLAGS) wonbe.c
vc15_rt.obj: vc15_rt.asm
$(ASM) $(AFLAGS) vc15_rt.asm;