summary refs log tree commit diff
path: root/Makefile
blob: 81a107acd5bc87e903996d593113403655cbbbb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
LDLIBS = -ltls

OBJS += archive.o
OBJS += imap.o

dev: tags all

all: bubger

bubger: ${OBJS}
	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@

${OBJS}: imap.h

tags: *.c *.h
	ctags -w *.c *.h

clean:
	rm -f bubger ${OBJS} tags
/src/commit/bin/qf.c?id=867f1c9743e0cecab44b07324ef3108bb0f2160a&follow=1'>Set TABSIZE=4June McEnroe 2022-06-02Do 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