blob: 5676fbfa3aeaf03a15c41046a96c19067f3d9d98 (
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
28
29
30
|
<!--
SPDX-FileCopyrightText: 2025 Tomasz Kramkowski <tomasz@kramkow.ski>
SPDX-License-Identifier: CC-BY-SA-4.0
-->
# timer
A command line egg timer.
## Building
Use GNU make.
You may need to link against `librt` on your system. To do this, pass
`LDLIBS=-lrt` to GNU make.
To build statically, pass `LDFLAGS=-static` to GNU make.
If you pass variables to GNU make via the command line, there's no easy way to
detect this and force a rebuild. In these cases, run the `./clean` script before
rebuilding.
## Installation
Place timer in a location of your choice. One way to do this may be with the
following command:
```
install -Dm755 timer ~/.local/bin/timer
```
|