aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-04-01 21:57:28 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-04-01 21:57:31 -0400
commit7684f0844f02ed4f28e240bfe8e0baa1e1f58365 (patch)
treeca858db3bc3dfff3c2ed85b18627a2a21c3d0610 /Makefile
parent7ab511a476822ac1769c9be64b1ca315af6f983f (diff)
parent539e0bac89012848047e9d69aeee3d2138714928 (diff)
badroff has slightly erring .LS && typeset cleanup
Two lines can break at different spots and create incorrect images; nonbreaking spaces may need to be added for this.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b08be79..4c782b5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,8 @@
.POSIX:
-OBJS = badroff.o buf.o
+OBJS = badroff.o buf.o ll.o
badroff: $(OBJS)
-badroff.o: badroff.c buf.h
+badroff.o: badroff.c buf.h ll.h
buf.o: buf.c buf.h
+ll.o: ll.c ll.h
clean:
rm -f badroff $(OBJS)