diff options
author | Wynn Wolf Arbor | 2020-04-13 18:50:42 +0200 |
---|---|---|
committer | Wynn Wolf Arbor | 2020-04-13 18:50:42 +0200 |
commit | 7f2b64a5527c641de1fec68ea62ec2427fa82a99 (patch) | |
tree | 44c7ec680ede3bb1d8d69b2d9363809640b7f5a6 /Makefile | |
parent | 2fff0645130766eb2e38fce6c817d039a3c9dabd (diff) | |
download | weltschmerz-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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |