⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.vms

📁 libiconv是一个很不错的字符集转换库。程序接口也很简单
💻 VMS
字号:
# -*- Makefile -*- for libcharset/lib 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).binlibdir = $(exec_prefix).lib# 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","HAVE_CONFIG_H=1","ENABLE_RELOCATABLE=1","IN_LIBRARY=1","INSTALLDIR=""$(bindir)]""","NO_XMALLOC=1","set_relocation_prefix=libcharset_set_relocation_prefix","relocate=libcharset_relocate"INCLUDES = /include=([],[-],[-.include])AR = libraryAR_FLAGS = /createLN = copyRM = delete# Programs used by "make install":INSTALL = copyINSTALL_PROGRAM = copyINSTALL_DATA = copy#### End of system configuration section. ####OBJECTS = localcharset.obj,relocatable.objall : charset.olb	write sys$output "Nothing else to be done for 'all'."localcharset.obj : localcharset.c	$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) localcharset.crelocatable.obj : relocatable.c	$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) relocatable.ccharset.olb : $(OBJECTS)	$(AR) $(AR_FLAGS) charset.olb $(OBJECTS)install : all	create /directory $(prefix)]	create /directory $(exec_prefix)]	create /directory $(libdir)]	$(INSTALL_DATA) charset.olb $(libdir)]charset.olbinstalldirs :	create /directory $(prefix)]	create /directory $(exec_prefix)]	create /directory $(libdir)]uninstall :	$(RM) $(libdir)]charset.olbcheck : 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) *.olb;*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 + -