mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	actually link to them as well git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24213 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			105 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Asterisk -- A telephony toolkit for Linux.
 | |
| # 
 | |
| # Various utilities
 | |
| #
 | |
| # Copyright (C) 1999-2006, Digium
 | |
| #
 | |
| # Mark Spencer <markster@digium.com>
 | |
| #
 | |
| # This program is free software, distributed under the terms of
 | |
| # the GNU General Public License
 | |
| #
 | |
| 
 | |
| #
 | |
| # Don't use ast mm routines
 | |
| #
 | |
| UTILS:=astman smsq stereorize streamplayer aelparse
 | |
| 
 | |
| ifeq (${OSARCH},SunOS)
 | |
|   SOL=../strcompat.o
 | |
|   SOLLIBS=-lsocket -lnsl
 | |
| endif
 | |
| 
 | |
| ifeq ($(POPT_LIB),)
 | |
|   UTILS:=$(filter-out smsq,$(UTILS))
 | |
| endif
 | |
| 
 | |
| ifeq ($(NEWT_LIB),)
 | |
|   UTILS:=$(filter-out astman,$(UTILS))
 | |
| endif
 | |
| 
 | |
| all: depend $(UTILS)
 | |
| 
 | |
| install:
 | |
| 	for x in $(UTILS); do \
 | |
| 		if [ "$$x" != "none" ]; then \
 | |
| 			$(INSTALL) -m 755 $$x $(DESTDIR)$(ASTSBINDIR)/$$x; \
 | |
| 		fi; \
 | |
| 	done 
 | |
| 
 | |
| uninstall:
 | |
| 	for x in $(TARGET); do rm -f $$x $(DESTDIR)$(ASTSBINDIR)/$$x; done
 | |
| 
 | |
| clean-depend:
 | |
| 	rm -f .depend
 | |
| 
 | |
| clean: clean-depend
 | |
| 	rm -f *.o $(TARGET) check_expr
 | |
| 	rm -f ast_expr2.o ast_expr2f.o
 | |
| 
 | |
| astman.o: astman.c
 | |
| 	$(CC) $(CFLAGS) -c -o $@ $<
 | |
| 
 | |
| astman: astman.o ../md5.o
 | |
| 	$(CC) $(CFLAGS) -o $@ $< ../md5.o -lnewt
 | |
| 
 | |
| stereorize: stereorize.o frame.o
 | |
| 	$(CC) $(CFLAGS) -o stereorize stereorize.o frame.o -lm
 | |
| 
 | |
| .PHONY: ../ast_expr2.c ../ast_expr2f.c ../pbx/ael/aelflex.o ../pbx/ael/aelbison.o ../pbx/pbx_ael.o
 | |
| 
 | |
| ast_expr2.o: ../ast_expr2.c
 | |
| 	gcc  $(CFLAGS) -c -o $@ $<
 | |
| 
 | |
| ast_expr2f.o: ../ast_expr2f.c
 | |
| 	gcc  $(CFLAGS) -c -DSTANDALONE -o $@ $<
 | |
| 
 | |
| check_expr: check_expr.c ast_expr2.o ast_expr2f.o
 | |
| 	$(CC) $(CFLAGS) -o $@ $^
 | |
| 
 | |
| aelparse : ../pbx/ael/aelflex.o ../pbx/ael/aelbison.o ../pbx/pbx_ael.o ael_main.o ast_expr2f.o ast_expr2.o
 | |
| 	$(CC) $(CFLAGS) -g -o aelparse ../pbx/ael/aelflex.o ../pbx/ael/aelbison.o ael_main.o ../pbx/pbx_ael.o ast_expr2f.o ast_expr2.o
 | |
| 
 | |
| ael_main.o : ael_main.c ../include/asterisk/ael_structs.h
 | |
| 	$(CC) $(CFLAGS) -c -g -o ael_main.o ael_main.c
 | |
| 
 | |
| ael_main1.o : ael_main.c ../include/asterisk/ael_structs.h
 | |
| 	$(CC) $(CFLAGS) -c -g  -o ael_main1.o ael_main.c
 | |
| 
 | |
| testexpr2s: ../ast_expr2f.c ../ast_expr2.c ../ast_expr2.h
 | |
| 	gcc -g -c -I../include -DSTANDALONE ../ast_expr2f.c -o ast_expr2f.o
 | |
| 	gcc -g -c -I../include -DSTANDALONE ../ast_expr2.c -o ast_expr2.o
 | |
| 	gcc -g -o testexpr2s ast_expr2f.o ast_expr2.o
 | |
| 	rm ast_expr2.o ast_expr2f.o 
 | |
| 	./testexpr2s expr2.testinput
 | |
| 
 | |
| smsq.o: smsq.c
 | |
| 	$(CC) $(CFLAGS) -c -o $@ $<
 | |
| 
 | |
| smsq: smsq.o
 | |
| 	$(CC) $(CFLAGS) -o smsq ${SOL} smsq.o -lpopt
 | |
| 
 | |
| streamplayer: streamplayer.o
 | |
| 	$(CC) $(CFLAGS) -o streamplayer ${SOL} streamplayer.o ${SOLLIBS}
 | |
| 
 | |
| ifneq ($(wildcard .depend),)
 | |
|   include .depend
 | |
| endif
 | |
| 
 | |
| depend: .depend
 | |
| 
 | |
| .depend:
 | |
| 	../build_tools/mkdep $(CFLAGS) `ls *.c`
 | |
| 
 |