mirror of
				https://github.com/johnwhitington/cpdf-source.git
				synced 2025-06-05 22:09:39 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			313 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			313 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
SOURCES = compressor.ml
 | 
						|
 | 
						|
RESULT = compressor
 | 
						|
 | 
						|
PACKS = camlpdf
 | 
						|
 | 
						|
TARGETS := native-code
 | 
						|
 | 
						|
OCAMLFLAGS = -bin-annot
 | 
						|
OCAMLNCFLAGS = -g -safe-string -w -3
 | 
						|
OCAMLBCFLAGS = -g -safe-string -w -3
 | 
						|
OCAMLLDFLAGS = -g
 | 
						|
 | 
						|
all : $(TARGETS)
 | 
						|
 | 
						|
clean ::
 | 
						|
	rm -rf doc foo foo2 out.pdf out2.pdf *.cmt *.cmti *.zlib
 | 
						|
 | 
						|
-include OCamlMakefile
 |