mirror of
https://gitea.tendokyu.moe/self/even
synced 2025-02-19 03:55:31 +01:00
51 lines
1.4 KiB
Markdown
51 lines
1.4 KiB
Markdown
even.sys
|
|
========
|
|
|
|
> Even is not odd.
|
|
|
|
A stub for Htsysm7679.
|
|
|
|
## Building
|
|
|
|
This project uses the MinGW toolchain to build.
|
|
|
|
```sh
|
|
make
|
|
|
|
# With custom sysroot (e.g. Fedora MinGW)
|
|
mingw64-make # on Fedora
|
|
make PREFIX=/path/to/sys-root/prefix # on other systems
|
|
|
|
# Update third party dependencies (requires peru)
|
|
make third_party
|
|
|
|
# Generate compile_commands.json for IDE completions (clangd/ccls/etc.)
|
|
bear -- make VERSION= clean all
|
|
```
|
|
|
|
## Notes
|
|
|
|
This stub didn't implement Htsysm7679's signature checks.
|
|
It's not a 1:1 replacement, but good enough to get executables running.
|
|
|
|
## License
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
even.sys - a stub for Htsysm7679
|
|
Copyright (C) 2024 Zephyr Lykos <self@mochaa.ws>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|