mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-11-02 20:08:17 +00:00 
			
		
		
		
	https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r48525 | kpfleming | 2006-12-16 15:14:34 -0600 (Sat, 16 Dec 2006) | 2 lines simplify dependency tracking system, using the compiler's built-in method for generating them, and only doing dependency tracking if developer mode is enabled via the configure script ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48527 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			48 lines
		
	
	
		
			904 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			904 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Asterisk -- A telephony toolkit for Linux.
 | 
						|
# 
 | 
						|
# Makefile for AGI-related stuff
 | 
						|
#
 | 
						|
# 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
 | 
						|
#
 | 
						|
 | 
						|
.PHONY: clean all uninstall
 | 
						|
 | 
						|
AGIS=agi-test.agi eagi-test eagi-sphinx-test jukebox.agi
 | 
						|
 | 
						|
ifeq ($(OSARCH),SunOS)
 | 
						|
  LIBS+=-lsocket -lnsl
 | 
						|
endif
 | 
						|
 | 
						|
include $(ASTTOPDIR)/Makefile.rules
 | 
						|
 | 
						|
all: $(AGIS)
 | 
						|
 | 
						|
strcompat.c: ../main/strcompat.c
 | 
						|
	@cp $< $@
 | 
						|
 | 
						|
eagi-test: eagi-test.o strcompat.o
 | 
						|
 | 
						|
eagi-sphinx-test: eagi-sphinx-test.o
 | 
						|
 | 
						|
install: all
 | 
						|
	mkdir -p $(DESTDIR)$(AGI_DIR)
 | 
						|
	for x in $(AGIS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(AGI_DIR) ; done
 | 
						|
 | 
						|
uninstall:
 | 
						|
	for x in $(AGIS); do rm -f $(DESTDIR)$(AGI_DIR)/$$x ; done
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f *.so *.o look eagi-test eagi-sphinx-test
 | 
						|
	rm -f .*.o.d .*.oo.d
 | 
						|
	rm -f strcompat.c
 | 
						|
 | 
						|
ifneq ($(wildcard .*.d),)
 | 
						|
   include .*.d
 | 
						|
endif
 |