Version 0.1.9 from FTP

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@346 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2001-07-28 20:19:35 +00:00
parent 707be9ed74
commit e83b9fb7af

27
agi/Makefile Executable file
View File

@@ -0,0 +1,27 @@
#
# Asterisk -- A telephony toolkit for Linux.
#
# Makefile for PBX frontends (dynamically loaded)
#
# Copyright (C) 1999, Mark Spencer
#
# Mark Spencer <markster@linux-support.net>
#
# This program is free software, distributed under the terms of
# the GNU General Public License
#
AGIS=agi-test.agi
CFLAGS+=
all: $(AGIS)
install: all
for x in $(AGIS); do $(INSTALL) -m 755 $$x $(AGI_DIR) ; done
clean:
rm -f *.so *.o look
%.so : %.o
$(CC) -shared -Xlinker -x -o $@ $<