Changeset 131
- Timestamp:
- 09/01/05 00:11:11 (3 years ago)
- Files:
-
- debian/rules (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
debian/rules
r73 r131 1 1 #!/usr/bin/make -f 2 2 # -*- makefile -*- 3 # Sample debian/rules that uses debhelper. 4 # This file was originally written by Joey Hess and Craig Small. 5 # As a special exception, when this file is copied by dh-make into a 6 # dh-make output file, you may use that output file without restriction. 7 # This special exception was added by Craig Small in version 0.37 of dh-make. 3 # Based on file generated using debhelper 8 4 9 5 # Uncomment this to turn on verbose mode. 10 6 #export DH_VERBOSE=1 11 12 13 14 7 15 8 CFLAGS="-Wall -g --std=c99 --pedantic -Wshadow" … … 25 18 dh_testdir 26 19 # Add here commands to configure the package. 27 28 20 touch configure-stamp 29 21 … … 33 25 build-stamp: configure-stamp 34 26 dh_testdir 35 36 27 # Add here commands to compile the package. 37 28 $(MAKE) 38 29 #docbook-to-man debian/swapspace.sgml > swapspace.1 39 40 30 touch build-stamp 41 31 … … 44 34 dh_testroot 45 35 rm -f build-stamp configure-stamp 46 47 36 # Add here commands to clean up after the build process. 48 37 -$(MAKE) clean 49 50 38 dh_clean 51 39
