diff options
author | EuAndreh <eu@euandre.org> | 2025-04-02 07:40:25 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-02 08:05:53 -0300 |
commit | daea276ee02c1fe7f8da444c27e3cbac73da153d (patch) | |
tree | 5ef049f89eb0af5b6dbdec7be24accd1d2fbad95 | |
parent | src/content/: Tweak asciidoc leftovers (diff) | |
download | euandre.org-daea276ee02c1fe7f8da444c27e3cbac73da153d.tar.gz euandre.org-daea276ee02c1fe7f8da444c27e3cbac73da153d.tar.xz |
Makefile: Remove ifok(1) from rules
-rw-r--r-- | Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -28,34 +28,34 @@ LDLIBS = .SUFFIXES: .gz .adoc.conf: - ifok -o $@ mkwb conf src/global.conf $< + mkwb conf src/global.conf $< > $@ .adoc.htmlbody: - ifok -o $@ mkwb htmlbody $< + mkwb htmlbody $< > $@ .htmlbody.html: - ifok -o $@ mkwb html $< + mkwb html $< > $@ .conf.htmlheader: - ifok -o $@ mkwb html -H $< + mkwb html -H $< > $@ .conf.htmlfooter: - ifok -o $@ mkwb html -F $< + mkwb html -F $< > $@ .conf.htmllisting: - ifok -o $@ mkwb indexbody $< + mkwb indexbody $< > $@ .adoc.snippets: - ifok -o $@ mkwb snippets $< + mkwb snippets $< > $@ .conf.indexentry: - ifok -o $@ mkwb indexentry $< + mkwb indexentry $< > $@ .htmlbody.feedentry: - ifok -o $@ mkwb feedentry $< + mkwb feedentry $< > $@ .conf.sortdata: - ifok -o $@ mkwb sortdata $< + mkwb sortdata $< > $@ |