aboutsummaryrefslogtreecommitdiffstats
path: root/agi/Makefile
blob: 8044516f7724323049a2585522a7b3c1e37393fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 $@ $<