-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
1,600 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cmd.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
APP = gview | ||
STACK = 4480k | ||
MALLOC = 0k | ||
|
||
TOOLPATH = ../../z_tools/ | ||
INCPATH = ../../z_tools/haribote/ | ||
APILIBPATH = ../apilib/ | ||
HARIBOTEPATH = ../haribote/ | ||
|
||
MAKE = $(TOOLPATH)make.exe -r | ||
NASK = $(TOOLPATH)nask.exe | ||
CC1 = $(TOOLPATH)cc1.exe -I$(INCPATH) -I../ -Os -Wall -quiet | ||
GAS2NASK = $(TOOLPATH)gas2nask.exe -a | ||
OBJ2BIM = $(TOOLPATH)obj2bim.exe | ||
MAKEFONT = $(TOOLPATH)makefont.exe | ||
BIN2OBJ = $(TOOLPATH)bin2obj.exe | ||
BIM2HRB = $(TOOLPATH)bim2hrb.exe | ||
BIM2BIN = $(TOOLPATH)bim2bin.exe | ||
RULEFILE = ../haribote.rul | ||
EDIMG = $(TOOLPATH)edimg.exe | ||
IMGTOL = $(TOOLPATH)imgtol.com | ||
GOLIB = $(TOOLPATH)golib00.exe | ||
COPY = copy | ||
DEL = del | ||
|
||
#默认动作 | ||
|
||
default : | ||
$(MAKE) $(APP).hrb | ||
|
||
#文件生成规则 | ||
|
||
$(APP).bim : $(APP).obj bmp.obj jpeg.obj $(APILIBPATH)apilib.lib Makefile | ||
$(OBJ2BIM) @$(RULEFILE) out:$(APP).bim map:$(APP).map stack:$(STACK) \ | ||
$(APP).obj jpeg.obj bmp.obj $(APILIBPATH)apilib.lib | ||
|
||
haribote.img : ../haribote/ipl20.bin ../haribote/haribote.sys $(APP).hrb \ | ||
Makefile | ||
$(EDIMG) imgin:../../z_tools/fdimg0at.tek \ | ||
wbinimg src:../haribote/ipl20.bin len:512 from:0 to:0 \ | ||
copy from:../haribote/haribote.sys to:@: \ | ||
copy from:$(APP).hrb to:@: \ | ||
copy from:../nihongo/nihongo.fnt to:@: \ | ||
imgout:haribote.img | ||
|
||
# 其他指令 | ||
|
||
%.gas : %.c ../apilib.h Makefile | ||
$(CC1) -o $*.gas $*.c | ||
|
||
%.nas : %.gas Makefile | ||
$(GAS2NASK) $*.gas $*.nas | ||
|
||
%.obj : %.nas Makefile | ||
$(NASK) $*.nas $*.obj $*.lst | ||
|
||
%.org : %.bim Makefile | ||
$(BIM2HRB) $*.bim $*.org $(MALLOC) | ||
|
||
%.hrb : %.org Makefile | ||
$(BIM2BIN) -osacmp in:$*.org out:$*.hrb | ||
|
||
# 运行程序 | ||
|
||
run : | ||
$(MAKE) haribote.img | ||
$(COPY) haribote.img ..\..\z_tools\qemu\fdimage0.bin | ||
$(MAKE) -C ../../z_tools/qemu | ||
|
||
full : | ||
$(MAKE) -C $(APILIBPATH) | ||
$(MAKE) $(APP).hrb | ||
|
||
run_full : | ||
$(MAKE) -C $(APILIBPATH) | ||
$(MAKE) -C ../haribote | ||
$(MAKE) run | ||
|
||
clean : | ||
-$(DEL) *.lst | ||
-$(DEL) gview.obj | ||
-$(DEL) jpeg.obj | ||
-$(DEL) *.map | ||
-$(DEL) *.bim | ||
-$(DEL) *.org | ||
-$(DEL) haribote.img | ||
|
||
src_only : | ||
$(MAKE) clean | ||
-$(DEL) $(APP).hrb |
Oops, something went wrong.