summaryrefslogtreecommitdiffstats
path: root/doc/online
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2022-08-28 21:57:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2022-08-28 21:57:16 +0900
commit795bcd2584759310a0fe512bff3c90841a47a5e4 (patch)
tree467174902e8f3a5dcda4f71117f40a10e57e6448 /doc/online
parentcbf7f06c177ef5101df183c684ed52e0b9d10d36 (diff)
downloadtdepowersave-795bcd2584759310a0fe512bff3c90841a47a5e4.tar.gz
tdepowersave-795bcd2584759310a0fe512bff3c90841a47a5e4.zip
Drop automake build support.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/online')
-rw-r--r--doc/online/Makefile8
-rwxr-xr-xdoc/online/replace2
2 files changed, 0 insertions, 10 deletions
diff --git a/doc/online/Makefile b/doc/online/Makefile
deleted file mode 100644
index e51b7a2..0000000
--- a/doc/online/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-all:
- meinproc --stylesheet /opt/trinity/share/apps/ksgmltools2/customization/tde-web.xsl ../en/index.docbook
- ./replace
- rm *.bak
- cp ../en/*.png .
-
-clean:
- rm *.png *.html
diff --git a/doc/online/replace b/doc/online/replace
deleted file mode 100755
index 9b99c81..0000000
--- a/doc/online/replace
+++ /dev/null
@@ -1,2 +0,0 @@
-von='..\/common\/kde_logo.png' nach='kde_logo.png'; filetype='*.html'; OLDIFS=$IFS; IFS='
-' ; files=`find . -name "$filetype"`; for f in $files;do cp $f $f.bak; g="$f.mettytmp"; echo "Searching in $f ..."; cat "$f" | sed "s/$von/$nach/" > "$g" && mv "$g" "$f"; rm -f *.mettytmp; done; IFS=$OLDIFS;