diff options
author | David Härdeman <david@hardeman.nu> | 2007-05-19 23:39:26 +0200 |
---|---|---|
committer | David Härdeman <david@hardeman.nu> | 2007-05-19 23:39:26 +0200 |
commit | 1846f66771ab3242fb34b689a773af3dd2e4dee1 (patch) | |
tree | 937b23169fb060f8e3bff2bda317d6914e05e195 /debian/rules | |
parent | 1909b3b79e530a6d44bdab41a9e95501fc7f30d4 (diff) |
Add debian build scripts for my own convenience
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..0d3cb37 --- /dev/null +++ b/debian/rules @@ -0,0 +1,61 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + $(MAKE) + touch build-stamp + +clean: + -$(MAKE) clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/metastore + +binary: binary-arch binary-indep + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-indep: +# Nothing to do + +.PHONY: configure build clean install binary binary-arch binary-indep |