Skip to content

Commit

Permalink
Don't regenerate deps.mak files on 'make clean' (Windows makefile)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntrel committed Sep 6, 2012
1 parent 00714db commit a5edf57
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions makefile.win32
Expand Up @@ -2,7 +2,6 @@
# Running make creates config.h then calls the sub makefiles.
#
# Other targets are:
# deps: delete the dependencies so they are regenerated on next make
# clean: clean all generated files
# install: install to DESTDIR
#
Expand Down Expand Up @@ -41,22 +40,19 @@ all: config.h
config.h: win32-config.h
$(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
clean-local:
-$(RM) geany_private.res geany.exe

clean: deps
clean:
$(MAKE) -C tagmanager/ctags -f makefile.win32 clean
$(MAKE) -C tagmanager/mio -f makefile.win32 clean
$(MAKE) -C tagmanager/src -f makefile.win32 clean
$(MAKE) -C scintilla -f makefile.win32 clean
$(MAKE) -C plugins -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
# mkdir output is ignored in case dir exists
Expand Down

0 comments on commit a5edf57

Please sign in to comment.