Kaydet (Commit) a5edf57a authored tarafından Nick Treleaven's avatar Nick Treleaven

Don't regenerate deps.mak files on 'make clean' (Windows makefile)

üst 00714db6
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
# Running make creates config.h then calls the sub makefiles. # Running make creates config.h then calls the sub makefiles.
# #
# Other targets are: # Other targets are:
# deps: delete the dependencies so they are regenerated on next make
# clean: clean all generated files # clean: clean all generated files
# install: install to DESTDIR # install: install to DESTDIR
# #
...@@ -41,14 +40,11 @@ all: config.h ...@@ -41,14 +40,11 @@ all: config.h
config.h: win32-config.h config.h: win32-config.h
$(CP) $< $@ $(CP) $< $@
deps:
-$(RM) tagmanager/ctags/deps.mak tagmanager/mio/deps.mak tagmanager/src/deps.mak scintilla/deps.mak plugins/deps.mak src/deps.mak
# used by src/makefile.win32 to avoid del ../file which is an error # used by src/makefile.win32 to avoid del ../file which is an error
clean-local: clean-local:
-$(RM) geany_private.res geany.exe -$(RM) geany_private.res geany.exe
clean: deps clean:
$(MAKE) -C tagmanager/ctags -f makefile.win32 clean $(MAKE) -C tagmanager/ctags -f makefile.win32 clean
$(MAKE) -C tagmanager/mio -f makefile.win32 clean $(MAKE) -C tagmanager/mio -f makefile.win32 clean
$(MAKE) -C tagmanager/src -f makefile.win32 clean $(MAKE) -C tagmanager/src -f makefile.win32 clean
...@@ -56,7 +52,7 @@ clean: deps ...@@ -56,7 +52,7 @@ clean: deps
$(MAKE) -C plugins -f makefile.win32 clean $(MAKE) -C plugins -f makefile.win32 clean
$(MAKE) -C src -f makefile.win32 clean $(MAKE) -C src -f makefile.win32 clean
.PHONY: all clean clean-local deps install .PHONY: all clean clean-local install
# likely requires admin privileges # likely requires admin privileges
# mkdir output is ignored in case dir exists # mkdir output is ignored in case dir exists
......
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