mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-08 02:48:29 +00:00
https://origsvn.digium.com/svn/asterisk/trunk ................ r159534 | kpfleming | 2008-11-26 13:08:56 -0600 (Wed, 26 Nov 2008) | 11 lines Merged revisions 159476 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r159476 | kpfleming | 2008-11-26 12:36:24 -0600 (Wed, 26 Nov 2008) | 7 lines simplify (and slightly bug-fix) the recent developer-oriented COMPILE_DOUBLE mode ensure that 'make clean' removes dependency files for .i files that are created in COMPILE_DOUBLE mode ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@159536 65c4cc65-6c06-0410-ace0-fbb531ad65f3
57 lines
1.0 KiB
Makefile
57 lines
1.0 KiB
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
|
|
|
|
ifeq ($(OSARCH),mingw32)
|
|
AGIS:=
|
|
endif
|
|
|
|
include $(ASTTOPDIR)/Makefile.rules
|
|
|
|
all: $(AGIS)
|
|
|
|
strcompat.c: ../main/strcompat.c
|
|
@cp $< $@
|
|
strcompat.o: ASTCFLAGS+=-DSTANDALONE
|
|
|
|
eagi-test.o: ASTCFLAGS+=-DSTANDALONE
|
|
|
|
eagi-test: eagi-test.o strcompat.o
|
|
|
|
eagi-sphinx-test.o: ASTCFLAGS+=-DSTANDALONE
|
|
|
|
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 .*.d *.s *.i
|
|
rm -f strcompat.c
|
|
|
|
ifneq ($(wildcard .*.d),)
|
|
include .*.d
|
|
endif
|