diff --git a/Makefile b/Makefile index cc01450549..cdef782e51 100644 --- a/Makefile +++ b/Makefile @@ -113,6 +113,9 @@ install : static t1 uninstall : ./Makefile.pl -uninstall -destdir $(DESTDIR) +deb : + dpkg-buildpackage -rfakeroot + clean: find . -name Makefile -mindepth 2 -exec sh -c '$(MAKE) -C `dirname {}` $@' \; find . -name '*~' -exec rm -f {} \; diff --git a/debian/changelog b/debian/changelog index c58a85e345..7a2af5d8e3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,5 @@ -paparazzi (0.9-1) unstable; urgency=low +paparazzi (1.0-1) unstable; urgency=low * Initial Release. - -- Pascal Brisset Fri, 28 Jan 2005 12:21:28 +0100 + -- Pascal Brisset Fri, 19 Feb 2005 12:21:28 +0100 diff --git a/debian/files b/debian/files index 9684b29dc2..8bbec13398 100644 --- a/debian/files +++ b/debian/files @@ -1,2 +1 @@ paparazzi_1.0-1_i386.deb extra optional - diff --git a/debian/rules b/debian/rules index 3ba5d4762d..88d683b7ba 100644 --- a/debian/rules +++ b/debian/rules @@ -10,10 +10,12 @@ #export DH_VERBOSE=1 + + CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 + CFLAGS += -O0 else CFLAGS += -O2 endif @@ -22,14 +24,16 @@ configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. + touch configure-stamp build: build-stamp -build-stamp: configure-stamp +build-stamp: configure-stamp dh_testdir - # Add here commands to compile the package + + # Add here commands to compile the package. # $(MAKE) #docbook-to-man debian/paparazzi.sgml > paparazzi.1 @@ -39,19 +43,22 @@ clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp + # Add here commands to clean up after the build process. # -$(MAKE) clean - dh_clean + + dh_clean install: build dh_testdir dh_testroot - dh_clean -k + dh_clean -k dh_installdirs # Add here commands to install the package into debian/paparazzi. # $(MAKE) install DESTDIR=$(CURDIR)/debian/paparazzi + # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. @@ -60,27 +67,27 @@ binary-indep: build install binary-arch: build install dh_testdir dh_testroot - dh_installchangelogs + dh_installchangelogs dh_installdocs dh_installexamples -# dh_install -# dh_installmenu -# dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo dh_installman dh_link dh_strip dh_compress dh_fixperms -# dh_perl -# dh_python -# dh_makeshlibs +# dh_perl +# dh_python +# dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol @@ -88,6 +95,4 @@ binary-arch: build install dh_builddeb binary: binary-indep binary-arch - .PHONY: build clean binary-indep binary-arch binary install configure -