diff options
author | EuAndreh <eu@euandre.org> | 2022-11-24 19:42:02 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-24 19:42:02 -0300 |
commit | b04e381be945493adb89dce783840a98c6c67ee7 (patch) | |
tree | e220daf1f2e057e5055854b46f0b1820c33bb64d /Makefile | |
parent | opt/tests/assert-running-service.sh: Add to "check" target (diff) | |
download | dotfiles-b04e381be945493adb89dce783840a98c6c67ee7.tar.gz dotfiles-b04e381be945493adb89dce783840a98c6c67ee7.tar.xz |
Makefile: Fix dependency of sasl-password
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -24,7 +24,10 @@ derived-assets = \ all: $(derived-assets) - cd $(PRIV_CONFIG) && $(MAKE) $@ + + +tilde: + cd $(PRIV_CONFIG) && $(MAKE) share/man/man1/x.1: bin/x @@ -54,6 +57,7 @@ $(XDG_DATA_HOME)/euandreh/e.list.txt: ~/Documents/txt/ opt/aux/gen-e-list.sh $(PRIV_STATEDIR)/postfix/relayhosts-maps.db $(PRIV_STATEDIR)/postfix/sasl-password.db: postmap $(@D)/`basename $@ .db` +$(PRIV_STATEDIR)/postfix/sasl-password: tilde $(PRIV_STATEDIR)/postfix/sasl-password.db: $(PRIV_STATEDIR)/postfix/sasl-password $(PRIV_STATEDIR)/postfix/relayhosts-maps.db: $(PRIV_STATEDIR)/postfix/relayhosts-maps |