Files
asterisk/apps/Makefile
T

28 lines
555 B
Makefile
Raw Normal View History

1999-11-13 17:59:36 +00:00
#
# Asterisk -- A telephony toolkit for Linux.
#
# Makefile for PBX frontends (dynamically loaded)
#
1999-12-11 20:09:45 +00:00
# Copyright (C) 1999, Mark Spencer
1999-11-13 17:59:36 +00:00
#
# Mark Spencer <markster@linux-support.net>
#
# This program is free software, distributed under the terms of
# the GNU General Public License
#
APPS=app_dial.so app_playback.so app_voicemail.so app_directory.so app_intercom.so app_mp3.so
CFLAGS+=
all: $(APPS)
clean:
rm -f *.so *.o
%.so : %.o
$(CC) -shared -Xlinker -x -o $@ $<
install: all
for x in $(APPS); do $(INSTALL) -m 755 $$x $(MODULES_DIR) ; done