Mercurial > noffle
annotate make-check @ 42:2467ff423c15 noffle
[svn] * AUTHORS.html, CHANGELOG.html, COPYING.html, README.html, FAQ.html,
NOTES.html, INSTALL.html: Removed files.
* AUTHORS, COPYING, ChangeLog, README, INSTALL, NEWS, docs/FAQ, docs/NOTES:
Added files.
* TODO.TXT: Renamed to TODO. Slightly changed formatting.
* README: Reformatted the file. Added info about CVS. Added a pointer to
the file INSTALL.
* noffle.1, noffle.conf.5: Moved to docs/
* LSM.TXT: Moved to docs/noffle.lsm. Small fix.
* INSTALL: Adapted to autoconf build-system. A few minor fixes.
author | uh1763 |
---|---|
date | Fri, 05 May 2000 21:26:14 +0100 |
parents | 04124a4423d4 |
children |
rev | line source |
---|---|
0 | 1 #!/bin/bash |
2 | |
3 if grep '^CFLAGS.*DEBUG' Makefile ; then | |
4 echo "Debugging options are on in Makefile" | |
5 exit -1 | |
6 fi | |
7 | |
8 if grep // *.[ch] ; then | |
9 echo "Failed: Source contains C++ style comments" | |
10 exit -1 | |
11 fi | |
12 | |
13 if grep strncpy *.[ch] ; then | |
14 echo "strncpy may result in unterminated strings." | |
15 echo "Use Util_copyString" | |
16 exit -1 | |
17 fi | |
18 | |
19 if grep XXX *.[ch] ; then | |
20 echo "Source contains XXX marker (personnally used)" | |
21 exit -1 | |
22 fi | |
23 | |
24 if grep -i "since version" CHANGELOG.html ; then | |
25 echo "Warning: CHANGELOG.html should mention new version" | |
26 echo "Continue anyway? (y/n)" | |
27 read a | |
28 if test "$a" != "j" -a "$a" != "J"; then exit -1; fi | |
29 fi | |
30 | |
31 exit 0 | |
32 |