-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.txt
More file actions
32 lines (25 loc) · 888 Bytes
/
README.txt
File metadata and controls
32 lines (25 loc) · 888 Bytes
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
28
29
30
31
bareutils
=========
bareutils are a collection of userspace utilities designed to be almost compatible
with existing utilities like GNU and busybox ones. Built with barelib as well.
Build system:
-------------
All of the bare software uses the GNU Make build system.
In addition to GNU Make, it uses some barelib-provided targets.
Building:
---------
Building bareutils is quite easy, you can:
- `make -j$(nproc)` (Release)
- `make BUILD=debug -j$(nproc)` (Debug)
- `make examples` (Stage examples to OUTDIR)
- `make install` (Install Release)
- `make BUILD=debug install` (Install Debug)
Configuration:
--------------
Configuring bareutils is done on build time. This is done by creating the
`.config.mk` file which is sourced by barelib's configure.mk maketool.
Example `.config.mk`:
---------------------
# disables the `ls` binary from compiling.
$(BINDIR)/ls:
$(DISABLED)