diff --git a/uppsrc/ide/Builders/Build.cpp b/uppsrc/ide/Builders/Build.cpp index 7c793d9a0..3be49c69e 100644 --- a/uppsrc/ide/Builders/Build.cpp +++ b/uppsrc/ide/Builders/Build.cpp @@ -675,10 +675,10 @@ void MakeBuild::SaveMakeFile(const String& fn, bool exporting) "OutFile = " << output << "\n" "\n" ".PHONY: all\n" - "all: install $(OutFile)\n" + "all: prepare $(OutFile)\n" "\n" - ".PHONY: install\n" - "install:\n"; + ".PHONY: prepare\n" + "prepare:\n"; } config << mf.config; install << mf.install; @@ -694,6 +694,7 @@ void MakeBuild::SaveMakeFile(const String& fn, bool exporting) << "\n" "$(OutFile): " << linkdep << "\n\t" << linkfiles << linkfileend << "\n" << rules + << ".PHONY: clean\n" << "clean:\n" << "\tif [ -d $(UPPOUT) ]; then rm -rf $(UPPOUT); fi;\n";