aboutsummaryrefslogtreecommitdiffstats
path: root/channels/Makefile
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>1999-12-01 05:25:44 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>1999-12-01 05:25:44 +0000
commit903779ac96938d3839c3e85b0a423e54eaa5b2c6 (patch)
treeabfc4793913a0dc30792a6fa7b8da1489528a656 /channels/Makefile
parent6c73936f4842f0d989fdfb9a7a73f95bdff23e7c (diff)
Version 0.1.0 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@67 f38db490-d61c-443f-a65b-d21fe96a405b
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