Skip to content

Commit

Permalink
Add --no-print-directory to clean target
Browse files Browse the repository at this point in the history
  • Loading branch information
ipatix committed Nov 26, 2024
1 parent 6c7a243 commit b2cf1b5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -392,10 +392,10 @@ endif
.PHONY: clean
clean:
@echo "===> CLEAN"
$(Q)$(MAKE) -C $(LUA_FOLDER) $(MAKECMDGOALS)
$(Q)$(MAKE) -C $(HWLOC_FOLDER) $(MAKECMDGOALS)
$(Q)$(MAKE) -C $(GOTCHA_FOLDER) $(MAKECMDGOALS)
$(Q)$(MAKE) -C $(BENCH_FOLDER) $(MAKECMDGOALS)
$(Q)$(MAKE) --no-print-directory -C $(LUA_FOLDER) $(MAKECMDGOALS)
$(Q)$(MAKE) --no-print-directory -C $(HWLOC_FOLDER) $(MAKECMDGOALS)
$(Q)$(MAKE) --no-print-directory -C $(GOTCHA_FOLDER) $(MAKECMDGOALS)
$(Q)$(MAKE) --no-print-directory -C $(BENCH_FOLDER) $(MAKECMDGOALS)
@rm -f $(L_APPS) likwid-sysfeatures likwid-setFrequencies
@rm -f likwid.lua
@rm -f $(STATIC_TARGET_LIB)
Expand Down
4 changes: 2 additions & 2 deletions bench/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ endif
.PRECIOUS: $(BUILD_DIR)/%.pas

clean:
@echo "===> CLEAN"
@echo "===> CLEAN BENCH"
@rm -rf likwid-bench

distclean: clean
@echo "===> DIST CLEAN"
@echo "===> DIST CLEAN BENCH"
@rm -rf $(BUILD_DIR)

install:
Expand Down
2 changes: 2 additions & 0 deletions ext/GOTCHA/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,10 @@ endif
.PHONY: clean distclean

clean:
@echo "===> CLEAN GOTCHA"
@rm -f $(TARGET) $(SHARED_LIBGOTCHA) $(STATIC_LIBGOTCHA) $(LIBGOTCHA).$(VERSION).$(RELEASE) $(LIBGOTCHA).$(VERSION)

distclean: clean
@echo "===> DIST CLEAN GOTCHA"
@rm -f $(TARGET) $(SHARED_LIBGOTCHA) $(STATIC_LIBGOTCHA) $(LIBGOTCHA).$(VERSION).$(RELEASE) $(LIBGOTCHA).$(VERSION)
@rm -rf $(BUILD_DIR)
2 changes: 2 additions & 0 deletions ext/hwloc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,11 @@ endif
.PHONY: clean distclean

clean:
@echo "===> CLEAN HWLOC"
@rm -f $(TARGET) $(SHARED_LIBHWLOC) $(STATIC_LIBHWLOC) $(LIBHWLOC).$(VERSION).$(RELEASE) $(LIBHWLOC).$(VERSION)

distclean: clean
@echo "===> DIST CLEAN HWLOC"
@rm -rf $(BUILD_DIR)


Expand Down
2 changes: 2 additions & 0 deletions ext/lua/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@ endif
.PHONY: clean distclean

clean:
@echo "===> CLEAN LUA"
@rm -f $(TARGET) $(INTERPRETER) $(SHARED_LIBLUA) $(STATIC_LIBLUA) $(LIBLUA).$(VERSION).$(RELEASE) $(LIBLUA).$(VERSION)

distclean: clean
@echo "===> DIST CLEAN LUA"
@rm -f $(TARGET) $(INTERPRETER) $(SHARED_LIBLUA) $(STATIC_LIBLUA) $(LIBLUA).$(VERSION).$(RELEASE) $(LIBLUA).$(VERSION)
@rm -rf $(BUILD_DIR)

Expand Down

0 comments on commit b2cf1b5

Please sign in to comment.