22 lines
		
	
	
		
			707 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			707 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
| #!/usr/bin/make -f
 | |
| # Sample debian/rules that uses debhelper.
 | |
| # This file is public domain software, originally written by Joey Hess.
 | |
| #
 | |
| # This version is for a multibinary package. It also allows you to build any
 | |
| # of the binary packages independantly, via binary-<package> targets.
 | |
| 
 | |
| # Uncomment this to turn on verbose mode. 
 | |
| export DH_VERBOSE=1
 | |
| 
 | |
| override_dh_install:
 | |
| #dh install
 | |
| 	$(MAKE) install-alternc DESTDIR=$(CURDIR)/debian/alternc
 | |
| 	$(MAKE) install-roundcube DESTDIR=$(CURDIR)/debian/alternc-roundcube
 | |
| 	$(MAKE) install-awstats DESTDIR=$(CURDIR)/debian/alternc-awstats
 | |
| 	$(MAKE) install-slave DESTDIR=$(CURDIR)/debian/alternc-slave
 | |
| 	$(MAKE) install-api DESTDIR=$(CURDIR)/debian/alternc-api
 | |
| 
 | |
| %:
 | |
| 	dh $@
 | |
| 
 |