diff options
author | EuAndreh <eu@euandre.org> | 2025-05-04 09:10:13 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-04 09:10:13 -0300 |
commit | cf1a5ea434ce529f0c2dba4a1e53d689c1c48b45 (patch) | |
tree | d8435473885cbd49dd85b8b9d58d8ec855b2aa49 /Makefile | |
parent | Makefile: Turn "i18n.sentinel" into a standalone "i18n" virtual target (diff) | |
download | papo.im-cf1a5ea434ce529f0c2dba4a1e53d689c1c48b45.tar.gz papo.im-cf1a5ea434ce529f0c2dba4a1e53d689c1c48b45.tar.xz |
Makefile: Remove extraneous src/global.conf dependency of XML files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -269,14 +269,14 @@ $(categories.htmllisting): $(categories.txt): src/global.conf mkwb categories src/global.conf $(@D) > $@ -$(categories.xml): src/global.conf +$(categories.xml): for f in `cat $*.txt`; do \ c="`printf '%s\n' "$$f" | cut -d. -f2`"; \ mkwb feed src/global.conf "$$f" > $(@D)/feed."$$c".xml; \ printf '%s\n' $(@D)/feed."$$c".xml; \ done > $@ -$(feeds.xml): src/global.conf +$(feeds.xml): mkwb feed src/global.conf $(@D)/sortdata.txt > $@ $(contents.gz): |