blob: aeaa36d4caa07d34427f915014e0753d0d34ee3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
OBJS += ansi.o
OBJS += c.o
OBJS += hilex.o
OBJS += irc.o
OBJS += mdoc.o
OBJS += text.o
hilex: ${OBJS}
${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
${OBJS}: hilex.h
clean:
rm -f hilex ${OBJS}
|