84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
84 lines
2.5 KiB
Makefile
84 lines
2.5 KiB
Makefile
# Id: Makefile,v 8.30 1996/11/27 11:59:09 bostic Exp (Berkeley) Date: 1996/11/27 11:59:09
|
|
|
|
CAT= dutch english french german ru_RU.KOI8-R spanish swedish
|
|
FILES= ../cl/*.c ../common/*.c ../ex/*.c ../vi/*.c
|
|
|
|
all: dump ${CAT}
|
|
|
|
${CAT}: english.base
|
|
@echo "... $@"; \
|
|
rm -f $@; \
|
|
sort -u $@.base | \
|
|
awk '{ \
|
|
if ($$1 == 1) { \
|
|
print "\nMESSAGE NUMBER 1 IS NOT LEGAL"; \
|
|
exit 1; \
|
|
} \
|
|
if (++nline > $$1) { \
|
|
print "DUPLICATE MESSAGE NUMBER " $$1; \
|
|
exit 1; \
|
|
} \
|
|
for (; nline < $$1; ++nline) \
|
|
print ""; \
|
|
print $0; \
|
|
}' | \
|
|
sed -e '1s/^/VI_MESSAGE_CATALOG/' \
|
|
-e '/"/s/^[^"]*"//' \
|
|
-e '1!s/"$$/X/' > $@; \
|
|
chmod 444 $@; \
|
|
if grep DUPLICATE $@ > /dev/null; then \
|
|
grep DUPLICATE $@; \
|
|
fi; \
|
|
if grep 'NOT LEGAL' $@ > /dev/null; then \
|
|
grep 'NOT LEGAL' $@; \
|
|
fi
|
|
|
|
CHK= dutch.check english.check french.check german.check \
|
|
ru_RU.KOI8-R.check spanish.check swedish.check
|
|
check: ${CHK}
|
|
${CHK}: ${CAT}
|
|
@echo "... $@"; \
|
|
f=`basename $@ .check`; \
|
|
(echo "Unused message id's (this is okay):"; \
|
|
awk '{ \
|
|
while (++nline < $$1) \
|
|
printf "%03d\n", nline; \
|
|
}' < $$f.base; \
|
|
echo =========================; \
|
|
echo "MISSING ERROR MESSAGES (Please add!):"; \
|
|
awk '{print $$1}' < $$f.base | sort -u > __ck1; \
|
|
awk '{print $$1}' < english.base | sort -u > __ck2; \
|
|
comm -13 __ck1 __ck2; \
|
|
echo =========================; \
|
|
echo "Extra error messages (just delete them):"; \
|
|
comm -23 __ck1 __ck2; \
|
|
echo =========================; \
|
|
echo "MESSAGES WITH THE SAME MESSAGE ID's (FIX!):"; \
|
|
for j in \
|
|
`sed '/^$$/d' < $$f.base | sort -u | \
|
|
awk '{print $$1}' | uniq -d`; do \
|
|
egrep $$j $$f.base; \
|
|
done; \
|
|
echo =========================; \
|
|
echo "Duplicate messages, both id and message (this is okay):"; \
|
|
sed '/^$$/d' < $$f.base | sort | uniq -c | \
|
|
awk '$$1 != 1 { print $$0 }' | sort -n; \
|
|
echo =========================; \
|
|
echo "Duplicate messages, just message (this is okay):"; \
|
|
sed '/^$$/d' < $$f | sort | uniq -c | \
|
|
awk '$$1 != 1 { print $$0 }' | sort -n; \
|
|
echo =========================) > $@
|
|
|
|
english.base: dump ${FILES} #Makefile
|
|
./dump ${FILES} |\
|
|
sed -e '/|/!d' \
|
|
-e 's/|/ "/' \
|
|
-e 's/^"//' \
|
|
-e 's/\\"/"/g' |\
|
|
sort -n > $@
|
|
|
|
dump: dump.c
|
|
${CC} -O -o dump dump.c
|
|
|
|
clean:
|
|
rm -f dump dump.o ${CAT} english.base *.check __ck1 __ck2
|