source and extract and display the projects listed here in multiple ways. For example, those projects that are suitable for summer of code can be designated with an attribute and then extracted to automatically be displayed on the summer of code pages, so that we only have to maintain one list instead of two. Correct a typo in one of the idea descriptions while here. Suggested by: rwatson Discussed with: joel
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			518 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			518 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # FreeBSD list of projects and ideas for volunteers
 | |
| #
 | |
| # $FreeBSD: www/en/projects/ideas/Makefile,v 1.1 2005/12/06 15:09:29 joel Exp $
 | |
| 
 | |
| MAINTAINER=	joel
 | |
| 
 | |
| .if exists(../Makefile.conf)
 | |
| .include "../Makefile.conf"
 | |
| .endif
 | |
| .if exists(../Makefile.inc)
 | |
| .include "../Makefile.inc"
 | |
| .endif
 | |
| 
 | |
| DATA=	style.css
 | |
| 
 | |
| XML_IDEAS=		${WEB_PREFIX}/en/projects/ideas/ideas.xml
 | |
| XSL_IDEAS=		${WEB_PREFIX}/en/projects/ideas/ideas.xsl
 | |
| 
 | |
| XMLDOCS=	ideas:${XSL_IDEAS}:${XML_IDEAS}:
 | |
| 
 | |
| INDEXLINK=	ideas.html
 | |
| 
 | |
| .include "${WEB_PREFIX}/share/mk/web.site.mk"
 |