Fix errors

This commit is contained in:
Bob Polis 2024-12-24 10:25:37 +01:00
parent b80b730a39
commit 1517c01832

View File

@ -12,15 +12,15 @@ Type `make` to install the `mkproj` script, its man page, and the templates.
## Overview ## Overview
With `mkproj`, you can create a C++ project for a tool or a library. With `mkproj`, you can create a C++ project for a tool or a library.
The tool can be: The project can be:
- a simple experiment, to test some idea; - a simple tool, to test some idea;
- a more elaborate tool, meant to be distributed; - a more elaborate tool, meant to be distributed;
- a UNIX filter, which processes input files line by line, or reads from - a UNIX filter, which processes input files line by line, or reads from
standard input when there are no input files; standard input when there are no input files;
- a library, where both a static and a dynamic library will be built. - a library, where both a static and a dynamic library will be built.
All of these can optionally: Apart from the simple tool, all of these can optionally:
- use a precompiled header for the C++ Standard Library; - use a precompiled header for the C++ Standard Library;
- implement a plugin architecture, where building and installing plugins is - implement a plugin architecture, where building and installing plugins is