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

OBJS += ansi.o
OBJS += c.o
OBJS += hilex.o
OBJS += html.o
OBJS += irc.o
OBJS += make.o
OBJS += mdoc.o
OBJS += text.o

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

${OBJS}: hilex.h

clean:
	rm -f hilex ${OBJS}