mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 18:55:19 +00:00 
			
		
		
		
	git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4859 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			46 lines
		
	
	
		
			991 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			991 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
| #
 | |
| # Don't use ast mm routines
 | |
| #
 | |
| CFLAGS+=-DNO_AST_MM
 | |
| 
 | |
| OSARCH=$(shell uname -s)
 | |
| ifeq ($(findstring BSD,${OSARCH}),BSD)
 | |
| CFLAGS+=-I/usr/local/include -L/usr/local/lib
 | |
| endif
 | |
| 
 | |
| TARGET=stereorize
 | |
| 
 | |
| TARGET+=$(shell if [ -f /usr/include/popt.h ]; then echo "smsq"; else if [ -f /usr/local/include/popt.h ]; then echo "smsq"; fi ; fi)
 | |
| TARGET+=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else if [ -f /usr/local/include/newt.h ]; then echo "astman"; fi ; fi)
 | |
| 
 | |
| all: depend $(TARGET)
 | |
| 
 | |
| install:
 | |
| 	for x in $(TARGET); do \
 | |
| 		if [ "$$x" != "none" ]; then \
 | |
| 			install -m 755 $$x $(DESTDIR)$(ASTSBINDIR)/$$x; \
 | |
| 		fi; \
 | |
| 	done 
 | |
| 
 | |
| clean:
 | |
| 	rm -f *.o astman smsq .depend
 | |
| 
 | |
| astman: astman.o ../md5.o
 | |
| 	$(CC) $(CFLAGS) -o astman astman.o ../md5.o -lnewt
 | |
| 
 | |
| stereorize: stereorize.o frame.o
 | |
| 	$(CC) $(CFLAGS) -o stereorize stereorize.o frame.o -lm
 | |
| 
 | |
| smsq: smsq.o
 | |
| 	$(CC) $(CFLAGS) -o smsq smsq.o -lpopt
 | |
| 
 | |
| ifneq ($(wildcard .depend),)
 | |
| include .depend
 | |
| endif
 | |
| 
 | |
| depend: .depend
 | |
| 
 | |
| .depend:
 | |
| 	../mkdep $(CFLAGS) `ls *.c`
 | |
| 
 |