mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 08:19:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			548 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			548 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
#   Makefile.fpc for Free Pascal Compiler Utils
 | 
						|
#
 | 
						|
 | 
						|
[target]
 | 
						|
programs=fpc ppufiles ppudump ppumove
 | 
						|
 | 
						|
[clean]
 | 
						|
units=ppu crc
 | 
						|
 | 
						|
[compiler]
 | 
						|
targetdir=.
 | 
						|
unitdir=..
 | 
						|
sourcedir=..
 | 
						|
 | 
						|
[install]
 | 
						|
fpcpackage=y
 | 
						|
 | 
						|
[default]
 | 
						|
fpcdir=../..
 | 
						|
 | 
						|
 | 
						|
[rules]
 | 
						|
#
 | 
						|
# PPU Tools
 | 
						|
#
 | 
						|
ppu$(PPUEXT): ppu.pas
 | 
						|
 | 
						|
ppufiles$(EXEEXT): ppufiles.pp ppu$(PPUEXT)
 | 
						|
 | 
						|
ppudump$(EXEEXT): ppudump.pp ppu$(PPUEXT)
 | 
						|
 | 
						|
ppumove$(EXEEXT): ppumove.pp ppu$(PPUEXT)
 | 
						|
 | 
						|
#
 | 
						|
# Don't export some tools, which are found in the current dir if it's in
 | 
						|
# the path, so are not valid for the subdirs
 | 
						|
#
 | 
						|
 | 
						|
unexport PPUFILES PPUMOVE
 |