aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2001-07-28 20:19:35 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2001-07-28 20:19:35 +0000
commit4ea0f055e5e35325af64094cc4b9be5563cb75dc (patch)
treeca4b060633a96885025a3a9138e697793b9833eb
parentd8aef9d8163407c1d86148bab9ff6578d4aaad93 (diff)
Version 0.1.9 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@346 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xagi/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/agi/Makefile b/agi/Makefile
new file mode 100755
index 000000000..8044516f7
--- /dev/null
+++ b/agi/Makefile
@@ -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 $@ $<