📄 makefile.vms
字号:
# -*- Makefile -*- for libiconv/src on VMS using the MMS utility#### Start of system configuration section. ##### Directories used by "make install":prefix = SYS$DATA:[exec_prefix = $(prefix)bindir = $(exec_prefix).binincludedir = $(prefix).includedatadir = $(prefix).sharelocaledir = $(datadir).locale# Programs used by "make":CC = cc# These flags affect binary compatibility. GNU gettext does not need them,# but other packages do, and we need to be binary compatible with them.ABIFLAGS = /name=(as_is,short) /float=ieeeWARN_CFLAGS = /warningOPTIMFLAGS = /optimizeCFLAGS = $(ABIFLAGS) $(WARN_CFLAGS) $(OPTIMFLAGS)DEFS = "VMS=1","ENABLE_NLS=1","LOCALEDIR=""$(localedir)]"""INCLUDES = /include=([],[-],[-.include],[-.srclib],[-.lib],$(includedir)])RM = delete# Programs used by "make install":INSTALL = copyINSTALL_PROGRAM = copyINSTALL_DATA = copy#### End of system configuration section. ####all : iconv.exe write sys$output "Nothing else to be done for 'all'."iconv.obj : iconv.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS),"INSTALLPREFIX=""$(prefix)]""","INSTALLDIR=""$(bindir)]""") iconv.ciconv.exe : iconv.obj [-.srclib]icrt.olb [-.lib]iconv.olb link /executable=iconv.exe iconv.obj,$(libdir)]intl.olb/lib,[-.srclib]icrt.olb/lib,[-.lib]iconv.olb/lib,[-.vms]link_options.optinstall : all create /directory $(prefix)] create /directory $(exec_prefix)] create /directory $(bindir)] $(INSTALL_PROGRAM) iconv.exe $(bindir)]iconv.exeinstalldirs : create /directory $(prefix)] create /directory $(exec_prefix)] create /directory $(bindir)]uninstall : $(RM) $(bindir)]iconv.execheck : all write sys$output "Nothing else to be done for 'check'."mostlyclean : clean write sys$output "Nothing else to be done for 'mostlyclean'."clean : $(RM) *.obj;* $(RM) *.exe;*distclean : clean write sys$output "Nothing else to be done for 'distclean'."maintainer-clean : distclean write sys$output "Nothing else to be done for 'maintainer-clean'."
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -