mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 19:43:03 +00:00
https://origsvn.digium.com/svn/asterisk/trunk ................ r144949 | kpfleming | 2008-09-27 10:52:56 -0500 (Sat, 27 Sep 2008) | 17 lines Merged revisions 144924-144925 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r144924 | kpfleming | 2008-09-27 10:00:48 -0500 (Sat, 27 Sep 2008) | 6 lines improve header inclusion process in a few small ways: - it is no longer necessary to forcibly include asterisk/autoconfig.h; every module already includes asterisk.h as its first header (even before system headers), which serves the same purpose - astmm.h is now included by asterisk.h when needed, instead of being forced by the Makefile; this means external modules will build properly against installed headers with MALLOC_DEBUG enabled - simplify the usage of some of these headers in the AEL-related stuff in the utils directory ........ r144925 | kpfleming | 2008-09-27 10:13:30 -0500 (Sat, 27 Sep 2008) | 2 lines fix some minor issues with rev 144924 ........ ................ r144950 | kpfleming | 2008-09-27 11:10:33 -0500 (Sat, 27 Sep 2008) | 2 lines fix bugs caused by r144949 when MALLOC_DEBUG is defined ................ r144951 | kpfleming | 2008-09-27 11:17:43 -0500 (Sat, 27 Sep 2008) | 1 line remove incorrect comment ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@144993 65c4cc65-6c06-0410-ace0-fbb531ad65f3
58 lines
1.1 KiB
Makefile
58 lines
1.1 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 .*.o.d .*.oo.d
|
|
rm -f *.s *.i
|
|
rm -f strcompat.c
|
|
|
|
ifneq ($(wildcard .*.d),)
|
|
include .*.d
|
|
endif
|