1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-03 14:55:46 +01:00

Update to Window Maker 0.50.2

This commit is contained in:
dan
1999-01-11 12:28:12 +00:00
parent a37bb3aed5
commit cb320b2fc3
87 changed files with 4999 additions and 4465 deletions

View File

@@ -37,14 +37,17 @@ EXCEPT="Makefile.am Makefile.in Makefile mkMakefile $FILE"
spit prefsdata_DATA =
for f in `ls -1|grep -v .in|grep -v \~`; do
FILES=`ls -1|grep -v \~`
FILES=`echo $FILES`
for f in $FILES; do
ok=1
for i in $EXCEPT; do
if test "$i" = "$f"; then
ok=0
break
fi
done
done
if [ -f $f -a $ok = 1 ]; then
spitln \\
spit " $f"
@@ -55,26 +58,6 @@ done
spitln
spitln
spitln EXTRA_DIST = '$(prefsdata_DATA)' mkMakefile wmmacros.in plmenu.in\\
spitln " plmenu.fr.in plmenu.hr.in"
spitln EXTRA_DIST = '$(prefsdata_DATA)' mkMakefile
spitln
spitln CLEANFILES = wmmacros plmenu
spitln
cat << 'FIM' >> $FILE
wmmacros: $(srcdir)/wmmacros.in ./Makefile
-rm -f wmmacros
sed -e "s:#pkgdatadir#:$(pkgdatadir):" -e "s://:/:" \
$(srcdir)/wmmacros.in > wmmacros; \
chmod 644 wmmacros
plmenu: $(srcdir)/plmenu.in ./Makefile
-rm -f plmenu
sed -e "s:#pkgdatadir#:$(pkgdatadir):" -e "s://:/:" \
$(srcdir)/plmenu.in > plmenu; \
chmod 644 plmenu
FIM