rules

来自「c unit test framework」· 代码 · 共 65 行

TXT
65
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?