70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ## @file
 | |
| ##
 | |
| ## $Id$
 | |
| ##
 | |
| ## $Date$
 | |
| ## $Author$
 | |
| ##
 | |
| ## @copy © Marc Wäckerlin
 | |
| ## @license LGPL, see file <a href="license.html">COPYING</a>
 | |
| ##
 | |
| ##       1         2         3         4         5         6         7         8
 | |
| ## 45678901234567890123456789012345678901234567890123456789012345678901234567890
 | |
| 
 | |
| SUBDIRS = @SRC_DIR@ @TST_DIR@ @DOC_DIR@
 | |
| 
 | |
| doc_DATA = AUTHORS COPYING ChangeLog NEWS README INSTALL
 | |
| 
 | |
| EXTRA_DIST = bootstrap.sh debian build-string
 | |
| 
 | |
| DISTCLEANFILES = debian/changelog
 | |
| 
 | |
| deb: dist
 | |
| 	tar xzvf @PACKAGE@-@VERSION@.tar.gz
 | |
| 	cd @PACKAGE@-@VERSION@ && dpkg-buildpackage
 | |
| 	rm -rf @PACKAGE@-@VERSION@ 
 | |
| 
 | |
| doc_DATA = AUTHORS NEWS README COPYING INSTALL ChangeLog @PACKAGENAME@.spec
 | |
| 
 | |
| RPMS = /usr/src/packages/RPMS/i586/@PACKAGENAME@-@MAJOR@.@MINOR@.@LEAST@-1.i586.rpm \
 | |
|      /usr/src/packages/RPMS/i586/@PACKAGENAME@-devel-@MAJOR@.@MINOR@.@LEAST@-1.i586.rpm \
 | |
|      /usr/src/packages/SRPMS/@PACKAGENAME@-@MAJOR@.@MINOR@.@LEAST@-1.src.rpm
 | |
| 
 | |
| .PHONY: release tag rpm webserver \
 | |
|         doc clean-local distclean-local dist-hool install-data-hook \
 | |
|         uninstall-hook
 | |
| 
 | |
| release: tag webserver
 | |
| 
 | |
| rpm: dist
 | |
| 	rpmbuild -ba \
 | |
|                  --define "_topdir $$(pwd)" \
 | |
|                  --define "_sourcedir $$(pwd)" \
 | |
|                  @PACKAGENAME@.spec
 | |
| 
 | |
| deps = ${top_srcdir}/COPYING ${top_srcdir}/README ${top_srcdir}/INSTALL ${top_srcdir}/NEWS ${top_srcdir}/ChangeLog
 | |
| 
 | |
| build-string:
 | |
| 	touch build-string
 | |
| 
 | |
| clean-local:
 | |
| 	- rm README.debian
 | |
| 	- rm @PACKAGENAME@-dev_@MAJOR@.@MINOR@.@LEAST@-*.deb \
 | |
| 	     @PACKAGENAME@_@MAJOR@.@MINOR@.@LEAST@*.changes \
 | |
| 	     @PACKAGENAME@_@MAJOR@.@MINOR@.@LEAST@*.tar.gz \
 | |
| 	     @PACKAGENAME@_@MAJOR@.@MINOR@.@LEAST@*.dsc \
 | |
| 	     @PACKAGENAME@-@MAJOR@.@MINOR@.@LEAST@*.tar.gz \
 | |
| 	     @PACKAGENAME@_@MAJOR@.@MINOR@.@LEAST@*.deb
 | |
| 
 | |
| distclean-local:
 | |
| 	- rm -r ${top_builddir}/@DOC_DIR@/html/*
 | |
| 	- rm -r ${top_builddir}/@DOC_DIR@/latex/*
 | |
| 	- rm makefile makefile.in doxygen.err libmrw.doxytag
 | |
| 	- find . -name '*~' | xargs rm
 | |
| 	- rm -rf autom4te.cache SPECS RPMS BUILD BUILDROOT SRPMS
 | |
| 	- rm aclocal.m4 config.guess config.sub configure \
 | |
| 	     depcomp install-sh ltmain.sh makefile makefile.in \
 | |
| 	     missing mkinstalldirs
 | |
| 
 | |
| MAINTAINERCLEANFILES = debian/control build-string
 |