Skip to content

Commit 3b7a425

Browse files
author
tilghman
committed
Merged revisions 285090 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ................ r285090 | tilghman | 2010-09-06 01:56:07 -0500 (Mon, 06 Sep 2010) | 16 lines Merged revisions 285089 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ................ r285089 | tilghman | 2010-09-06 01:55:17 -0500 (Mon, 06 Sep 2010) | 9 lines Merged revisions 285088 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r285088 | tilghman | 2010-09-06 01:54:18 -0500 (Mon, 06 Sep 2010) | 2 lines Silly convenience script for BSD platforms. ........ ................ ................ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@285091 f38db490-d61c-443f-a65b-d21fe96a405b
1 parent b08326e commit 3b7a425

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

BSDmakefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This is a convenience script for systems on which BSD make is the default,
2+
# such that typing 'make' will do what people expect, instead of producing an
3+
# error (due to incompatibilities between BSD make and GNU make).
4+
5+
.include "makeopts"
6+
7+
all::
8+
$(MAKE)
9+
10+
$(.TARGETS)::
11+
$(MAKE) $(.TARGETS)

makeopts.in

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ AWK=@AWK@
1212
BISON=@BISON@
1313
FLEX=@FLEX@
1414
GREP=@GREP@
15+
MAKE=@GNU_MAKE@
1516
AR=@AR@
1617
RANLIB=@RANLIB@
1718
FIND=@FIND@

0 commit comments

Comments
 (0)