summary refs log tree commit diff
path: root/configure
blob: 90e11738d307c683c818dcd4b8e001c291530b52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -eu

libs='libcrypto libtls ncursesw'
pkg-config --print-errors $libs

cat >config.mk <<EOF
CFLAGS += $(pkg-config --cflags $libs)
LDFLAGS += $(pkg-config --libs-only-L $libs)
LDLIBS = $(pkg-config --libs-only-l $libs)
EOF
500'>2019-02-05Fix DEL in aesJune McEnroe 2019-02-05Add aesJune McEnroe Okay this should really be aes(6) but I don't feel like adding back MAN6 in the Makefile. 2019-02-01Set nvim Directory back to blueJune McEnroe