summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-07-02 13:45:09 -0700
committerJulian Blake Kongslie2022-07-02 13:45:09 -0700
commitc72951a36d6cb9775dc1ecd9bc26bc13e796f10c (patch)
tree5a8fe196beba5c7c674d1b3d627c9a0beac849f5 /Makefile
parentTrivial code reorg. (diff)
downloadissim-c72951a36d6cb9775dc1ecd9bc26bc13e796f10c.tar.xz
Dropping the async interface, and adding some real uarch.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0d154a8..f8e983b 100644
--- a/Makefile
+++ b/Makefile
@@ -85,11 +85,10 @@ $(foreach part,${PARTS},$(eval $(call mklib,${part})))
85 85
86ifdef iwyu 86ifdef iwyu
87 87
88build/iwyu.cpp: 88build/iwyu.cpp: $(wildcard *.h)
89 @mkdir -p $(dir $@) 89 @mkdir -p $(dir $@)
90 @tools/iwyu-header $(wildcard *.h) > $@ 90 @tools/iwyu-header $(wildcard *.h) > $@
91 @$(call iwyu,$@) 91 @$(call iwyu,$@)
92.PHONY: build/iwyu.cpp
93 92
94IWYU_CPPS += build/iwyu.cpp 93IWYU_CPPS += build/iwyu.cpp
95 94