diff options
author | June McEnroe <june@causal.agency> | 2021-01-12 22:06:56 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-12 22:06:56 -0500 |
commit | c277129386f1acfe133da11f23a7d730ae48964d (patch) | |
tree | 29923c815344b8ac967f2856338c5649365c43ce /bin/hilex/Makefile | |
parent | Consolidate hilex formatters into hilex.c (diff) | |
download | src-c277129386f1acfe133da11f23a7d730ae48964d.tar.gz src-c277129386f1acfe133da11f23a7d730ae48964d.zip |
Move hilex out of hilex directory
Diffstat (limited to 'bin/hilex/Makefile')
-rw-r--r-- | bin/hilex/Makefile | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/hilex/Makefile b/bin/hilex/Makefile deleted file mode 100644 index e7972425..00000000 --- a/bin/hilex/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -CFLAGS += -std=c11 -Wall -Wextra -Wpedantic - -OBJS += c.o -OBJS += hilex.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} |