📄 makefile.vms
字号:
# -*- Makefile -*- for srclib on VMS using the MMS utility#### Start of system configuration section. ##### Directories used by "make install":prefix = SYS$DATA:[exec_prefix = $(prefix)libdir = $(exec_prefix).libincludedir = $(prefix).include# 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_NLS=1","DEPENDS_ON_LIBICONV=1","DEPENDS_ON_LIBINTL=1"INCLUDES = /include=([],[-],$(includedir)])AR = libraryAR_FLAGS = /createLN = copyRM = delete# Programs used by "make install":INSTALL = copyINSTALL_PROGRAM = copyINSTALL_DATA = copy#### End of system configuration section. ####OBJECTS = \ error.obj, \ progname.obj, progreloc.obj, \ xmalloc.obj, xstrdup.obj, \ xreadlink.obj, \ \ canonicalize.obj, \ relocatable.objall : icrt.olb write sys$output "Nothing else to be done for 'all'."alloca.h : alloca_.h $(LN) alloca_.h alloca.herror.obj : error.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) error.cprogname.obj : progname.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) progname.cprogreloc.obj : progreloc.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) progreloc.cxmalloc.obj : xmalloc.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xmalloc.cxstrdup.obj : xstrdup.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xstrdup.cxreadlink.obj : xreadlink.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xreadlink.ccanonicalize.obj : canonicalize.c,alloca.h $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) canonicalize.crelocatable.obj : relocatable.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) relocatable.cicrt.olb : $(OBJECTS) $(AR) $(AR_FLAGS) icrt.olb $(OBJECTS)install : all write sys$output "Nothing else to be done for 'install'."installdirs : write sys$output "Nothing to be done for 'installdirs'."uninstall : write sys$output "Nothing to be done for 'uninstall'."check : 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) alloca.h;* $(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 + -