repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git]
/
external
/
bsd
/
am-utils
/
dist
/
m4
/
mk-aclocal
blob
62250e353d7af77f8c9c8bfb868d9bec50b54922
1
#!/bin/sh
2
#
3
# Make am-utils' aclocal.m4 file (concatendated from others).
4
# For maintainers only.
5
# Erez Zadok <ezk AT cs.columbia.edu>
6
7
if
[ !
-d
macros
];
then
8
echo
no macros directory found
!
9
exit
2
10
fi
11
cd
macros
12
for
i
in
HEADER
*
.
m4
;
do
13
cat
$i
14
echo
15
echo
16
done
17
cat
TRAILER
18
exit
0