mirror of
https://github.com/fltk/fltk.git
synced 2026-05-21 06:21:26 +08:00
Updated the make html process, adding a new strip functionality that removes the date in each and every html autogenerated files. Now a constant message is displayed thus reducing drastically the size of future web updates.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6686 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
@@ -271,6 +271,8 @@ html/index.html: $(HTMLFILES) $(IMAGEFILES) Doxyfile
|
||||
-$(RMDIR) html
|
||||
-$(INSTALL_DIR) html
|
||||
-$(DOXYDOC)
|
||||
echo "Stripping HTML files..."
|
||||
./strip_tags
|
||||
|
||||
#fltk.ps: $(HTMLFILES) $(IMAGEFILES)
|
||||
# echo "Generating PostScript documentation..."
|
||||
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
for f in html/*.html ; do
|
||||
cat $f | sed 's/<!-- ... ... .*:..:.. ....\. -->/<!-- date removed for reducing unnecessary svn web updates -->/' > $f.tmp
|
||||
rm $f
|
||||
mv $f.tmp $f
|
||||
done
|
||||
Reference in New Issue
Block a user