wdvi

network DVI viewer
Log | Files | Refs

commit 82390cf7ab74d8b001f37477aac8419673e2d011
parent ee29b97736fbfe54eac69af0ad69b52374b19c6e
Author: Kyle Milz <krwmilz@gmail.com>
Date:   Mon,  6 Sep 2021 16:23:55 +0000

Turn depend into a real target

Diffstat:
MMakefile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -25,8 +25,8 @@ LDFLAGS += -Xlinker --allow-multiple-definition -lm ${PROG}: ${SRCS:.c=.o} ${CC} -o ${PROG} ${SRCS:.c=.o} ${LDFLAGS} ${PKGS_LDFLAGS} -depend: - cpp ${CPPFLAGS} -M ${SRCS} > .depend +depend: ${SRCS} + cpp ${CPPFLAGS} -M ${SRCS} > depend install: @echo "Not yet." @@ -41,4 +41,4 @@ analysis: make clean scan-build make --include .depend +-include depend