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

📄 rules

📁 c unit test framework
💻
字号:
#!/usr/bin/make -f# Uncomment this to turn on verbose mode.#export DH_VERBOSE=1export DESTDIR=$(shell pwd)/debian/checkconfigure: configure-stampconfigure-stamp:	dh_testdir	 ./configure --prefix=/usr --enable-plain-docdir	touch configure-stampbuild: configure-stamp build-stampbuild-stamp:	dh_testdir	$(MAKE)	touch build-stampclean:	dh_testdir	dh_testroot	rm -f build-stamp configure-stamp	-$(MAKE) distclean	# hack!	rm -f debian/files	dh_cleaninstall: build	dh_testdir	dh_testroot	dh_clean -k	dh_installdirs	$(MAKE) install 	# fix the installation	rm -f debian/check/usr/share/doc/check/tutorial.sgml	rm -f debian/check/usr/share/doc/check/ChangeLog	rm -f debian/check/usr/share/doc/check/*.html	mkdir debian/check/usr/share/doc/check/tutorial	cp doc/*.html debian/check/usr/share/doc/check/tutorial	rm debian/check/usr/share/doc/check/COPYING	binary-arch: build install	dh_testdir	dh_testroot	dh_installdocs -XTODO	dh_installexamples	# fix the example setup	rm -rf debian/check/usr/share/doc/check/examples/Makefile*	rm -rf debian/check/usr/share/doc/check/examples/configure*	cp debian/example_makefile debian/check/usr/share/doc/check/examples/Makefile	dh_installchangelogs ChangeLog	dh_link	dh_strip	dh_compress -XMakefile	dh_fixperms	dh_installdeb	dh_gencontrol	dh_md5sums	dh_builddebbinary: binary-arch.PHONY: build clean binary-indep binary-arch binary install configure

⌨️ 快捷键说明

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