mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 07:43:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			381 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			381 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
##################################
 | 
						|
# Man page installation for linux
 | 
						|
#
 | 
						|
 | 
						|
ifndef PREFIXINSTALLDIR
 | 
						|
PREFIXINSTALLDIR=/usr
 | 
						|
endif
 | 
						|
 | 
						|
ifndef DOCINSTALLDIR
 | 
						|
DOCINSTALLDIR:=$(PREFIXINSTALLDIR)/doc/fpc-$(shell ppc386 -iV)
 | 
						|
endif 
 | 
						|
 | 
						|
installdoc:
 | 
						|
	install -d -m 755 $(DOCINSTALLDIR)
 | 
						|
	cp readme.txt $(DOCINSTALLDIR)/README
 | 
						|
	cp whatsnew.txt $(DOCINSTALLDIR)/NEWS
 | 
						|
	cp faq.txt faq.html $(DOCINSTALLDIR)
 |