diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2003-10-17 11:22:52 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2003-10-17 11:22:52 +0000 |
commit | f01a970a4ec80d0f3ed1b1bdb091b764dcbde9b2 (patch) | |
tree | 0aca8a0e8a5d8ec07e8780b50ba45ca50b749e1f /net/asterisk12/files/patch-agi::Makefile | |
parent | a50ad34b6aeed8329502f312a934da08872c84cb (diff) |
Add asterisk 0.5.0, an Open Source PBX and telephony toolkit.
Notes
Notes:
svn path=/head/; revision=91503
Diffstat (limited to 'net/asterisk12/files/patch-agi::Makefile')
-rw-r--r-- | net/asterisk12/files/patch-agi::Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net/asterisk12/files/patch-agi::Makefile b/net/asterisk12/files/patch-agi::Makefile new file mode 100644 index 000000000000..806195bfbb3e --- /dev/null +++ b/net/asterisk12/files/patch-agi::Makefile @@ -0,0 +1,33 @@ + +$FreeBSD$ + +--- agi/Makefile.orig Tue Aug 19 19:42:30 2003 ++++ agi/Makefile Fri Oct 17 14:13:14 2003 +@@ -11,20 +11,23 @@ + # the GNU General Public License + # + +-AGIS=agi-test.agi eagi-test eagi-sphinx-test ++AGIS_BIN=eagi-test eagi-sphinx-test ++AGIS_SCR=agi-test.agi ++AGIS=$(AGIS_SCR) $(AGIS_BIN) + + CFLAGS+= + + all: depend $(AGIS) + + install: all +- for x in $(AGIS); do $(INSTALL) -m 755 $$x $(AGI_DIR) ; done ++ for x in $(AGIS_BIN); do $(BSD_INSTALL_PROGRAM) $$x $(AGI_DIR) ; done ++ for x in $(AGIS_SCR); do $(BSD_INSTALL_SCRIPT) $$x $(AGI_DIR) ; done + + eagi-test: eagi-test.o +- $(CC) -o eagi-test eagi-test.o ++ $(CC) $(CFLAGS) -o eagi-test eagi-test.o + + eagi-sphinx-test: eagi-sphinx-test.o +- $(CC) -o eagi-sphinx-test eagi-sphinx-test.o ++ $(CC) $(CFLAGS) -o eagi-sphinx-test eagi-sphinx-test.o + + clean: + rm -f *.so *.o look .depend |