mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-26 11:47:31 +00:00
25 lines
523 B
Makefile
25 lines
523 B
Makefile
# $tcsh: Makefile,v 1.14 2006/03/02 18:46:45 christos Exp $
|
|
|
|
SUBDIRS= C et finnish french german greek italian ja pl russian \
|
|
spanish ukrainian
|
|
#GENCAT= gencat --new
|
|
CHARSET= charset
|
|
GENCAT= gencat
|
|
|
|
catalogs:
|
|
@for i in ${SUBDIRS} ; \
|
|
do \
|
|
echo "$$i"; \
|
|
cd $$i; \
|
|
cat ${CHARSET} set[0-9] set[0-9][0-9] > ../../tcsh.$$i.m; \
|
|
cd ..; \
|
|
${GENCAT} ../tcsh.$$i.cat ../tcsh.$$i.m; \
|
|
done
|
|
|
|
clean:
|
|
@for i in ${SUBDIRS} ; \
|
|
do \
|
|
rm -f $$i/*~; \
|
|
rm -f ../tcsh.$$i.cat ../tcsh.$$i.m; \
|
|
done
|