mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-21 15:08:19 +02:00

* Adds files with topic skeletons. * Adds content for topics (partial). * Merges content from the wiki page.
19 lines
510 B
Bash
19 lines
510 B
Bash
#!/bin/bash
|
|
|
|
#==========================================================================
|
|
# removes files generated using make-docs.sh and make-archive.sh
|
|
#==========================================================================
|
|
echo ""
|
|
echo "Removing generated files"
|
|
echo ""
|
|
|
|
# generated footers
|
|
rm -v ./datetimectrls-{chm,html}-footer.xml
|
|
# chm output
|
|
rm -v ./datetimectrls.{chm,xct}
|
|
# html archive file
|
|
rm -v ./docs-html-datetimectrls-*.7z
|
|
# html files
|
|
rm -vrf ./datetimectrls/
|
|
rm -v build_{chm,html}.log
|