mirror of
				https://github.com/msgpack/msgpack-c.git
				synced 2025-11-04 04:09:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
public.COQC   = coqc
 | 
						|
public.COQC_FLAGS   =
 | 
						|
public.COQLIB = $(shell coqc -where)
 | 
						|
public.COQDEP = coqdep -w -coqlib $`(COQLIB) -I .
 | 
						|
 | 
						|
public.CoqProof(files) =
 | 
						|
	vo=$(addsuffix .vo,$(files))
 | 
						|
	value $(vo)
 | 
						|
 | 
						|
%.vo %.glob: %.v
 | 
						|
	$(COQC) $(COQC_FLAGS) $<
 | 
						|
 | 
						|
.SCANNER: %.vo: %.v
 | 
						|
	$(COQDEP) $<
 |