reconfigure.mk

来自「Audacity是一款用於錄音和編輯聲音的、免費的開放源碼軟體。它可以執行於Ma」· MK 代码 · 共 59 行

MK
59
字号
#!/usr/bin/make -f# The auto tools MUST be run in the following order:##	1.  aclocal#	2.  libtoolize (if you use libtool)#	3.  autoconf#	4.  autoheader (if you use autoheader)#	5.  automake (if you use automake)## The following makefile runs these in the correct order according to their# dependancies. It also makes up for Mac OSX's fucked-upped-ness.ACLOCAL = aclocalifneq ($(shell uname -s), Darwin)  LIBTOOLIZE = libtoolizeelse  # Fuck Apple! Why the hell did they rename libtoolize????  LIBTOOLIZE = glibtoolize  # Fink sucks as well, but this seems necessary.  ACLOCAL_INC = -I /sw/share/aclocalendifconfig.status: configure src/config.h.in Makefile.in src/Makefile.in tests/Makefile.in	./configure --enable-gcc-werrorconfigure: libtool ltmain.sh	autoconfMakefile.in: Makefile.am		automake --copy --add-missingsrc/Makefile.in: src/Makefile.am		automake --copy --add-missingtests/Makefile.in: tests/Makefile.am		automake --copy --add-missingsrc/config.h.in: configure libtool	autoheaderlibtool ltmain.sh: aclocal.m4	$(LIBTOOLIZE) --copy --force	# Need to re-run aclocal whenever acinclude.m4 is modified.aclocal.m4: acinclude.m4	$(ACLOCAL) $(ACLOCAL_INC)clean:	rm -f libtool ltmain.sh aclocal.m4 Makefile.in src/config.h.in config.cache config.status# Do not edit or modify anything in this comment block.# The arch-tag line is a file identity tag for the GNU Arch # revision control system.## arch-tag: 2b02bfd0-d5ed-489b-a554-2bf36903cca9

⌨️ 快捷键说明

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