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

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

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

${OBJS}: imap.h

clean:
	rm -f bubger ${OBJS}
ht'> 2019-02-07Add mdoc syntax to hiJune McEnroe 2019-02-07Support multi-line C macros in hiJune McEnroe 2019-02-07Detect .mk files as makeJune McEnroe 2019-02-07Add make syntax to hiJune McEnroe 2019-02-07Add IRC output to hiJune McEnroe 2019-02-07Improve C syntax accuracy and add Format classJune McEnroe 2019-02-07Factor out hi checkJune McEnroe Fix subexpression bounds check and compile pattends. 2019-02-07Add Escape class to hiJune McEnroe 2019-02-07Add Todo class and parent syntax constraintJune McEnroe