24 lines
451 B
Markdown
24 lines
451 B
Markdown
# ClassicNotepad
|
|
|
|
Lightweight Win32 notepad-like editor with word wrap toggle, font picker, and custom icon.
|
|
|
|
## Build
|
|
Prereqs: MinGW toolchain on PATH (`gcc`, `windres`, `mingw32-make`).
|
|
|
|
```bash
|
|
mingw32-make all
|
|
```
|
|
|
|
Outputs:
|
|
- `ClassicNotepad.exe` — main executable
|
|
- `notepad.exe` — alias for quick search
|
|
|
|
Clean build artifacts:
|
|
|
|
```bash
|
|
mingw32-make clean
|
|
```
|
|
|
|
## Run
|
|
Launch `ClassicNotepad.exe` (or `notepad.exe`) from the build directory.
|