summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index f9ca22c..af806f3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -2,11 +2,13 @@
CFLAGS+=-g -Wall -Wextra
+OBJS=xref.o byte_class.o cos_decode.o cos_object.o pdf_doc.o
+
.PHONY:all clean
all:xref
-xref:xref.o byte_class.o
+xref:$(OBJS)
clean:
- ${RM} xref xref.o
+ ${RM} xref $(OBJS)