asterisk/channels/Makefile
Mark Spencer 39e1915264 Version 0.1.0 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@67 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1999-12-01 05:25:44 +00:00

28 lines
562 B
Makefile
Executable file

#
# 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