diff options
author | Tim Segers <tsegers@pm.me> | 2022-10-06 15:38:26 +0200 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2022-10-06 15:56:33 +0200 |
commit | d9238d8844ddc582075d64d9b2dcc982a2a3d36f (patch) | |
tree | 0eb80cc7a83404a7d3f0327e4c063326f42d1886 | |
parent | cdd840de6664c8caecb1ecd35540605c30c1e978 (diff) | |
download | opendeco-d9238d8844ddc582075d64d9b2dcc982a2a3d36f.tar.gz |
Fix build for debian stable
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ VERSION=\"$(shell git describe --tags --dirty)\" opendeco: opendeco.c deco.c deco.h schedule.c schedule.h output.c output.h - gcc --std=c99 -pedantic -Wall -Werror -O3 -lm -DVERSION=${VERSION} opendeco.c deco.c schedule.c output.c -o opendeco + gcc --std=c99 -pedantic -Wall -Werror -O3 -DVERSION=${VERSION} opendeco.c deco.c schedule.c output.c -lm -o opendeco run: opendeco ./opendeco -d 30 -t 120 -g EAN32 --decogasses EAN50 |