aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 466814b..3698477 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,9 @@
.POSIX:
.PHONY: all clean
-OBJS = badroff.o sb.o buf.o
+OBJS = badroff.o buf.o
badroff: $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@
-badroff.o: badroff.c sb.h
-sb.o: sb.c sb.h
+badroff.o: badroff.c buf.h
buf.o: buf.c buf.h
clean:
rm -f badroff $(OBJS)