33 lines
		
	
	
	
		
			577 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			577 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| all:            head_em.o libem_o.a end.o
 | |
| 
 | |
| install:	cp
 | |
| 
 | |
| cp:             all
 | |
| 		../../install head_em.o head_em
 | |
| 		../../install libem_o.a tail_em
 | |
| 		../../install end.o end_em
 | |
| 
 | |
| cmp:            all
 | |
| 		-../../compare head_em.o head_em
 | |
| 		-../../compare libem_o.a tail_em
 | |
| 		-../../compare end.o end_em
 | |
| 
 | |
| 
 | |
| head_em.o:      head_em.s
 | |
| 		pdp -c head_em.s
 | |
| 
 | |
| end.o:		end.s
 | |
| 		pdp -c end.s
 | |
| 
 | |
| libem_o.a:	libem_s.a
 | |
| 		ASAR=aal ; export ASAR ; march . libem_o.a
 | |
| 
 | |
| clean:
 | |
| 		rm -f *.o libem_o.a
 | |
| 
 | |
| opr:
 | |
| 		make pr | opr
 | |
| 
 | |
| pr:
 | |
| 		@pr `pwd`/Makefile `pwd`/head_em.s
 | |
| 		@arch pv libem_s.a | pr -h `pwd`/libem_s.a
 |