blob: c128da7d7a0258acb4892acab7483c0eebb52578 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# cat
Standalone musl-libc-based Linux port of FreeBSD `cat` for Project Tick BSD/Linux Distribution.
## Build
```sh
gmake -f GNUmakefile
```
Binary output:
```sh
out/cat
```
## Test
```sh
gmake -f GNUmakefile test
```
## Notes
- This project is intentionally decoupled from the top-level FreeBSD build.
- Linux builds disable the FreeBSD Capsicum/Casper path.
- No shared BSD compat shim is used; source is adjusted directly for Linux.
|