makefile
来自「开放源码的编译器open watcom 1.6.0版的源代码」· 代码 · 共 31 行
TXT
31 行
# Makefile for Open Watcom Fortran
# Use unref=1 on command line to get not
# referenced warnings & extensions used messages
exeext=.exe # all platforms currently supported?
cplnk=wfl386 # originally f77
flags= # originally -o
# These warnings are of no consequence to the application
!ifndef unref
flags+= -NOEX -NOR
!endif
all: asetup$(exeext) adventure$(exeext) .symbolic
asetup$(exeext) # builds advtxt from advdat
asetup$(exeext): asetup.for asubs.for
$(cplnk) $(flags) -FE=asetup$(exeext) asetup.for asubs.for
adventure$(exeext): aamain.for asubs.for
$(cplnk) $(flags) -FE=adventure$(exeext) aamain.for asubs.for
clean: .symbolic
@rm *.obj
@rm *.err
@rm *.exe
@rm advtxt*
@echo Clean performed.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?