summaryrefslogtreecommitdiff
path: root/channels/Makefile
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>1999-12-01 05:25:44 +0000
committerMark Spencer <markster@digium.com>1999-12-01 05:25:44 +0000
commit39e1915264f66840d7379ba379abc429d99c74cb (patch)
treeabfc4793913a0dc30792a6fa7b8da1489528a656 /channels/Makefile
parentc6e7419f7b74c64908c11226cc1f539f388f65fd (diff)
Version 0.1.0 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@67 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/Makefile')
-rwxr-xr-xchannels/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/channels/Makefile b/channels/Makefile
new file mode 100755
index 000000000..7d68f258f
--- /dev/null
+++ b/channels/Makefile
@@ -0,0 +1,27 @@
+#
+# Asterisk -- A telephony toolkit for Linux.
+#
+# Makefile for Channel backends (dynamically loaded)
+#
+# Copyright (C) 1999, Adtran Inc. and Linux Support Services, LLC
+#
+# Mark Spencer <markster@linux-support.net>
+#
+# This program is free software, distributed under the terms of
+# the GNU General Public License
+#
+
+CHANNEL_LIBS=chan_vofr.so chan_ixj.so
+
+CFLAGS+=#-DVOFRDUMPER
+
+all: $(CHANNEL_LIBS)
+
+clean:
+ rm -f *.so *.o
+
+%.so : %.o
+ $(CC) -shared -Xlinker -x -o $@ $<
+
+install: all
+ for x in $(CHANNEL_LIBS); do $(INSTALL) -m 755 $$x $(MODULES_DIR) ; done