You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			309 B
		
	
	
	
		
			Plaintext
		
	
			
		
		
	
	
			22 lines
		
	
	
		
			309 B
		
	
	
	
		
			Plaintext
		
	
| # CC = gcc
 | |
| # CCFLAG =
 | |
| 
 | |
| ifeq (${ARCH},sun)
 | |
|         CC = cc
 | |
| 	CCFLAG = -g
 | |
| endif
 | |
| ifeq (${ARCH},linux)
 | |
|         CC = gcc
 | |
| 	CCFLAG = -g
 | |
| endif
 | |
| LIB = libCS106X_debug_${ARCH}.a		
 | |
| %.o:  %.c
 | |
| 	$(CC) $(CCFLAG) -c $< 
 | |
| 
 | |
| 
 | |
| $(LIB) : genlib.o  random.o  simpio.o  strlib.o symtab.o scanadt.o stack.o
 | |
| 	ar r $@ $?
 | |
| 
 | |
| clean : 
 | |
| 	rm *.o
 |