📄 makefile
字号:
################################################################################
# File: makefile
#
# Purpose: Makefile for Watcom C/C++ Compiler version 1.3
#
# Status: Auto-Generated (by Synesis Software's makemake.py) - DO NOT EDIT!!
#
# Created:
# Updated:
#
################################################################################
################################################################################
# Environment check
#
################################################################################
# Macros
#
CC = wcc386
CPPC = wpp386
AR = lib386
LD = wcl386
INCLUDES = \
\
-I.. \
\
-I$(STLSOFT_INCLUDE) \
-I$(STLSOFT_INCLUDE)\inprogress \
-I$(STLSOFT_INCLUDE)\research \
\
LIBS = \
\
\
COMMON_DEFINES = \
\
\
CC_DEFS = \
\
$(COMMON_DEFINES) \
\
CPPC_DEFS = \
\
$(COMMON_DEFINES) \
\
CC_ARGS = -zq $(INCLUDES) $(CC_DEFS)
CPPC_ARGS = -zq -xs $(INCLUDES) $(CPPC_DEFS)
LD_ARGS = -zq $(LIBS)
################################################################################
# Targets
#
all: target
usage:
-@echo "make [target | test | clean]"
target: \
.\strtok_intra_thread_test.exe \
\
compile: \
.\strtok_intra_thread_test.obj \
\
test: target
.\strtok_intra_thread_test.exe
clean:
if exist .\strtok_intra_thread_test.exe del /f .\strtok_intra_thread_test.exe
if exist *.obj del /f *.obj
if exist *.tds del /f *.tds
if exist *.map del /f *.map
# Executables
.\strtok_intra_thread_test.exe: .\strtok_intra_thread_test.obj makefile
$(LD) $(LD_ARGS) -fe=$@ .\strtok_intra_thread_test.obj
# Objects
.\strtok_intra_thread_test.obj: ..\strtok_intra_thread_test.c makefile
$(CC) $(CC_ARGS) -fo=$@ ..\strtok_intra_thread_test.c
################################################################################
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -