makefile.vms

来自「Wxpython Implemented on Windows CE, Sou」· VMS 代码 · 共 39 行

VMS
39
字号
#************************************************************************
# Makefile for resource under VMS
# by Stefan Hammes
# (incomplete) update history:
# 11.04.95
#************************************************************************

#************************************************************************
# Definition section
# (cave: definitions and includes must begin with ',')
#************************************************************************

APPOPTS = 
APPDEFS = 
APPINCS = 

#************************************************************************
# Module section
#************************************************************************

# Name of main module
MAIN = resource

# Object modules of the application.
OBJS = resource.obj

.include [--.src]makevms.env

# main dependency
$(MAIN).exe : $(MAIN).$(OBJ)
    $(LINK) $(LINKFLAGS) /exec=$(MAIN).exe $(MAIN).$(OBJ),$(WXLIB)/lib,$(OPTSFILE)/option
    - purge *.exe

#************************************************************************
# Header file depedencies following
#************************************************************************
resource.obj : resource.cc resource.h

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?