diff options
author | yzrh <yzrh@noema.org> | 2020-12-30 03:09:00 +0000 |
---|---|---|
committer | yzrh <yzrh@noema.org> | 2020-12-30 03:09:00 +0000 |
commit | 98691d4203f4e578b84b2014db0fbe0c1209cc48 (patch) | |
tree | c528e3ea964111b934ae5e61e847831d62944f41 /src/GNUmakefile | |
parent | 8d6fbb43c9bc840d4217bf4f0b49b1213f1601a1 (diff) | |
download | melon-98691d4203f4e578b84b2014db0fbe0c1209cc48.tar.gz melon-98691d4203f4e578b84b2014db0fbe0c1209cc48.tar.zst |
Add HN text extraction.
Diffstat (limited to 'src/GNUmakefile')
-rw-r--r-- | src/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GNUmakefile b/src/GNUmakefile index e730845..1263005 100644 --- a/src/GNUmakefile +++ b/src/GNUmakefile @@ -10,7 +10,7 @@ obj = ${src:.c=.o} PREFIX = /usr/local CFLAGS = -O3 -march=native -pipe -Wall -LDFLAGS = -Wl,-O3 -lcrypto -Wl,--as-needed +LDFLAGS = -Wl,-O3 -lcrypto -lz -Wl,--as-needed all: ${obj} ${CC} ${LDFLAGS} -o melon $^ |