Originally Posted by
emp1953
When performing a make clean, the executable is not removed. All the other files that should be removed are removed, but the executable persists.
Correct. The clean target removes intermediate objects, temporary files, and core files, not the executable.
clean: compiler_clean
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) *~ core *.core
clean: compiler_clean
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) *~ core *.core
To copy to clipboard, switch view to plain text mode
What is the setting that I have to make to get this to perform as it did before.
The distclean target also removes the target executable/library, the qmake.stash file, and the Makefile.
distclean: clean
-$(DEL_FILE) $(TARGET)
-$(DEL_FILE) .qmake.stash
-$(DEL_FILE) Makefile
distclean: clean
-$(DEL_FILE) $(TARGET)
-$(DEL_FILE) .qmake.stash
-$(DEL_FILE) Makefile
To copy to clipboard, switch view to plain text mode
This boilerplate qmake output has not changed for as long as I can remember.
Bookmarks