genwebgallery

annotate debian/rules @ 21:3ce5429cd219

removed unneeded stuff in debian/rules
author meillo@marmaro.de
date Sat, 10 May 2008 21:48:21 +0200
parents 27f96c3b8224
children
rev   line source
meillo@0 1 #!/usr/bin/make -f
meillo@0 2 # -*- makefile -*-
meillo@0 3 # Sample debian/rules that uses debhelper.
meillo@0 4 # This file was originally written by Joey Hess and Craig Small.
meillo@0 5 # As a special exception, when this file is copied by dh-make into a
meillo@0 6 # dh-make output file, you may use that output file without restriction.
meillo@0 7 # This special exception was added by Craig Small in version 0.37 of dh-make.
meillo@0 8
meillo@0 9 # Uncomment this to turn on verbose mode.
meillo@0 10 #export DH_VERBOSE=1
meillo@0 11
meillo@0 12
meillo@12 13 build:
meillo@0 14
meillo@0 15 clean:
meillo@0 16 dh_testdir
meillo@0 17 dh_testroot
meillo@21 18 dh_clean
meillo@0 19
meillo@12 20 install:
meillo@0 21 dh_testdir
meillo@0 22 dh_testroot
meillo@0 23 dh_installdirs
meillo@0 24
meillo@0 25 # Add here commands to install the package into debian/genwebgallery.
meillo@0 26 $(MAKE) DESTDIR=$(CURDIR)/debian/genwebgallery install
meillo@0 27
meillo@0 28
meillo@0 29 # Build architecture-independent files here.
meillo@12 30 binary-indep: install
meillo@0 31 dh_testdir
meillo@0 32 dh_testroot
meillo@9 33 dh_installchangelogs ChangeLog
meillo@0 34 dh_installdocs
meillo@0 35 dh_installman
meillo@0 36 dh_compress
meillo@0 37 dh_fixperms
meillo@0 38 dh_installdeb
meillo@0 39 dh_gencontrol
meillo@0 40 dh_md5sums
meillo@0 41 dh_builddeb
meillo@0 42
meillo@0 43 # Build architecture-dependent files here.
meillo@12 44 binary-arch:
meillo@0 45
meillo@21 46 binary: binary-indep binary-arch
meillo@12 47
meillo@0 48 .PHONY: build clean binary-indep binary-arch binary install configure