25 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # $FreeBSD: www/ja/tutorials/Makefile,v 1.3 2000/04/23 14:33:58 phantom Exp $
 | |
| #
 | |
| # Original revision: 1.6
 | |
| #
 | |
| # Build the FreeBSD tutorials/articles outside of the www tree, and then
 | |
| # install them in to the right place.
 | |
| 
 | |
| DOCS = index.sgml
 | |
| 
 | |
| DIRS_TO_CLEAN =	../../../doc/ja_JP.eucJP/articles \
 | |
| 		../../../doc/ja_JP.eucJP/books/ppp-primer
 | |
| #		../../../doc/ja_JP.eucJP/books/fdp-primer \
 | |
| 
 | |
| all afterinstall:
 | |
| 	(cd ../../../doc/ja_JP.eucJP/articles && ${MAKE} 'FORMATS=html html-split' 'DESTDIR=${DESTDIR}/data/ja/tutorials/$${.CURDIR:T}' ${.TARGET:S/afterinstall/install/})
 | |
| #	(cd ../../../doc/ja_JP.eucJP/books/fdp-primer && ${MAKE} 'FORMATS=html html-split' DESTDIR=${DESTDIR}/data/ja/tutorials/docproj-primer ${.TARGET:S/afterinstall/install/})
 | |
| 	(cd ../../../doc/ja_JP.eucJP/books/ppp-primer && ${MAKE} 'FORMATS=html html-split' DESTDIR=${DESTDIR}/data/ja/tutorials/ppp ${.TARGET:S/afterinstall/install/})
 | |
| 
 | |
| ### Revision checking
 | |
| REVFILES=	${DOCS:M*.sgml:S/.sgml$/.revinc/g}
 | |
| BUILDTOP=	../..
 | |
| DIR_IN_LOCAL=	tutorials
 | |
| 
 | |
| .include "../web.mk"
 |