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

📄 reconfigure.mk

📁 Audacity是一款用於錄音和編輯聲音的、免費的開放源碼軟體。它可以執行於Mac OS X、Microsoft Windows、GNU/Linux和其它作業系統
💻 MK
字号:
#!/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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -