gnumakefile

来自「Linux下文件工具。」· 代码 · 共 34 行

TXT
34
字号
# Having a separate GNUmakefile lets me `include' the dynamically# generated rules created via Makefile.maint as well as Makefile.maint itself.# This makefile is used only if you run GNU Make.# It is necessary if you want to build targets usually of interest# only to the maintainer.# Systems where /bin/sh is not the default shell need this.  The $(shell)# command below won't work with e.g. stock DOS/Windows shells.SHELL = /bin/shhave-Makefile := $(shell test -f Makefile && echo yes)# If the user runs GNU make but has not yet run ./configure,# give them a diagnostic.ifeq ($(have-Makefile),yes)include Makefileinclude $(srcdir)/Makefile.cfginclude $(srcdir)/Makefile.maintelseall:	@echo There seems to be no Makefile in this directory.	@echo "You must run ./configure before running \`make'."	@exit 1endif# Tell version 3.79 and up of GNU make to not build goals in this# directory in parallel.  This is necessary in case someone tries to# build multiple targets on one command line..NOTPARALLEL:

⌨️ 快捷键说明

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