Commit 52932184 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* let's run 'make clean-src' when typing 'make clean', since make clean-bin...

* let's run 'make clean-src' when typing 'make clean', since make clean-bin won't be used anyway. The user is informed of this through a message.
parent 127ac12b
......@@ -60,7 +60,11 @@ clean-bin: FORCE
$(MAKE) -C src clean-dots
clean: FORCE
@echo "Do you mean to clean-src or clean-bin ?"
# @echo " Do you mean to clean-src or clean-bin ?"
@echo " 'make bin' isn't available at the moment"
@echo " you probably wanna run 'make clean-src' then"
@echo " you can still run 'make clean-bin' manually if needed"
$(MAKE) clean-src
package: FORCE
@if test -d tmp; then \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment