summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-25 03:49:38 -0500
committerJune McEnroe <june@causal.agency>2019-01-25 03:49:38 -0500
commit1e9b5139f03bed6406a3f6682ad463ccc7da4bef (patch)
tree5a607c37b3198906f2640ffa2cd47162e315e324
parentUse getline in place of fgetln (diff)
downloadcatgirl-1e9b5139f03bed6406a3f6682ad463ccc7da4bef.tar.gz
catgirl-1e9b5139f03bed6406a3f6682ad463ccc7da4bef.zip
Add Linux.mk
-rw-r--r--Linux.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/Linux.mk b/Linux.mk
new file mode 100644
index 0000000..94cd0e2
--- /dev/null
+++ b/Linux.mk
@@ -0,0 +1,6 @@
+LIBRESSL_PREFIX = /usr/local
+CFLAGS += -D_GNU_SOURCE
+LDLIBS = -lncursesw -lpthread
+LDLIBS += $(LIBRESSL_PREFIX)/lib/libtls.a
+LDLIBS += $(LIBRESSL_PREFIX)/lib/libssl.a
+LDLIBS += $(LIBRESSL_PREFIX)/lib/libcrypto.a
2021-01-20Use mtags in source-filterJune McEnroe 2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe These don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe