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

OBJS += ansi.o
OBJS += c.o
OBJS += hilex.o
OBJS += mdoc.o
OBJS += text.o

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

${OBJS}: hilex.h

clean:
	rm -f hilex ${OBJS}
> 2019-10-26Disconnect client on unknown commandJune McEnroe 2019-10-26Allow reading sensitive information from filesJune McEnroe 2019-10-26Add rc scriptJune McEnroe 2019-10-25Add install and uninstall targetsJune McEnroe 2019-10-25Expand documentationJune McEnroe 2019-10-25Add AGPLv3 notice on client registrationJune McEnroe 2019-10-25Rename project pounceJune McEnroe