You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
		
		
		
		
		
			
		
			
				
					
					
						
							57 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
	
	
							57 lines
						
					
					
						
							1.6 KiB
						
					
					
				| ########################################################################## | |
| # Makefile for the GLFW documentation. | |
| ########################################################################## | |
|  | |
| PDFDOCS = glfwrm.pdf glfwug.pdf | |
| DVIDOCS = glfwrm.dvi glfwug.dvi | |
| 
 | |
| 
 | |
| ########################################################################## | |
| # Build macros | |
| ########################################################################## | |
| default: pdf | |
| pdf:     $(PDFDOCS) | |
| dvi:     $(DVIDOCS) | |
| 
 | |
| 
 | |
| ########################################################################## | |
| # Clean macros | |
| ########################################################################## | |
| clean: | |
| 	rm -f glfwrm.dvi glfwrm.aux glfwrm.log glfwrm.out glfwrm.pdf glfwrm.toc glfwrm.lot | |
| 	rm -f glfwug.dvi glfwug.aux glfwug.log glfwug.out glfwug.pdf glfwug.toc | |
| 
 | |
| clean-win: | |
| 	@.\\cleanup.bat | |
| 
 | |
| 
 | |
| ########################################################################## | |
| # Rules for building the GLFW Reference Manual | |
| ########################################################################## | |
|  | |
| glfwrm.pdf: glfwrm.tex glfwrm.toc glfwrm.lot glfwdoc.sty | |
| 	pdflatex glfwrm.tex | |
| 
 | |
| glfwrm.dvi: glfwrm.tex glfwrm.toc glfwrm.lot glfwdoc.sty | |
| 	latex glfwrm.tex | |
| 
 | |
| glfwrm.toc: glfwrm.tex glfwdoc.sty | |
| 	latex glfwrm.tex | |
| 
 | |
| glfwrm.lot: glfwrm.tex glfwdoc.sty | |
| 	latex glfwrm.tex | |
| 
 | |
| 
 | |
| ########################################################################## | |
| # Rules for building the GLFW Users Guide | |
| ########################################################################## | |
|  | |
| glfwug.pdf: glfwug.tex glfwug.toc glfwdoc.sty | |
| 	pdflatex glfwug.tex | |
| 
 | |
| glfwug.dvi: glfwug.tex glfwug.toc glfwdoc.sty | |
| 	latex glfwug.tex | |
| 
 | |
| glfwug.toc: glfwug.tex glfwdoc.sty | |
| 	latex glfwug.tex | |
| 
 | |
| 
 |