17 lines
		
	
	
		
			304 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			304 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | |
| CC      = gcc
 | |
| CCOPT   = -Wall -g -DDEBUG_LEVEL=1
 | |
| LIBS    = -lao -lsndfile -lm
 | |
| 
 | |
| ao_output.o:       ao_output.c Makefile
 | |
| 	$(CC) ${CCOPT} -c $<
 | |
| 
 | |
| playfile.o:       playfile.c Makefile
 | |
| 	$(CC) ${CCOPT} -c $<
 | |
| 
 | |
| OBJS    = ao_output.o playfile.o
 | |
| 
 | |
| t:	t.c ${OBJS} Makefile
 | |
| 	$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@
 | |
| 
 |