mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-05-09 23:13:07 +08:00
11 lines
210 B
Makefile
11 lines
210 B
Makefile
TARGET =
|
||
MODE = exe
|
||
OBJS = $(TARGET).obj
|
||
STACKSIZE = 0x1000000 # 16MB (default)
|
||
|
||
INCPATH = ../z_tools/win32/
|
||
CC1OPT = -Dmain=main0
|
||
include ../z_tools/com_mak.txt
|
||
|
||
# tolset08‘ΉžMakefile
|