aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWynn Wolf Arbor2020-04-13 18:50:42 +0200
committerWynn Wolf Arbor2020-04-13 18:50:42 +0200
commit7f2b64a5527c641de1fec68ea62ec2427fa82a99 (patch)
tree44c7ec680ede3bb1d8d69b2d9363809640b7f5a6
parent2fff0645130766eb2e38fce6c817d039a3c9dabd (diff)
downloadweltschmerz-7f2b64a5527c641de1fec68ea62ec2427fa82a99.tar.gz
Add missing prerequisites to Makefile
Two (relatively) new source files, namely configreader.vala and utils.vala, were missing as prerequisites from the weltschmerz rule, leading to the binary not being rebuilt if either file is changed.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cfc8ec9..6e84f4f 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ DATAROOTDIR ?= ${PREFIX}/share
MANDIR ?= ${DATAROOTDIR}/man
VALAC ?= valac
-weltschmerz: weltschmerz.vala terminal.vala config.vala resources.c
+weltschmerz: weltschmerz.vala terminal.vala config.vala configreader.vala utils.vala resources.c
${VALAC} -X -lm --pkg posix --pkg gtk+-3.0 --pkg vte-2.91 --gresources resources.xml \
weltschmerz.vala terminal.vala config.vala configreader.vala utils.vala resources.c