summary refs log tree commit diff
path: root/Makefile
blob: f4b27a4e1c5144d3d87f1db55423643fa0233f44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
PREFIX = /usr/local
MANDIR = ${PREFIX}/share/man
LIBRESSL_PREFIX = /usr/local

CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
CFLAGS += ${LIBRESSL_PREFIX:%=-I%/include}
LDFLAGS += ${LIBRESSL_PREFIX:%=-L%/lib}
LDLIBS = -ltls

-include config.mk

notemap:

clean:
	rm -f notemap

install: notemap notemap.1
	install -d ${PREFIX}/bin ${MANDIR}/man1
	install notemap ${PREFIX}/bin
	gzip -c notemap.1 > ${MANDIR}/man1/notemap.1.gz

uninstall:
	rm -f ${PREFIX}/bin/notemap ${MANDIR}/man1/notemap.1.gz
='/src/commit/bin/qf.c?id=3e6c29a0d0e43587289e46f38f2a2e18dc5778e4&follow=1'>Do basic match highlightingJune McEnroe 2022-06-02Clean up parsing a littleJune McEnroe 2022-06-02Don't duplicate path stringJune McEnroe 2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe 2022-06-02Add initial working version of qfJune McEnroe 2022-05-29Set prompt for okshJune McEnroe