diff --git a/makefile.win32 b/makefile.win32 index 490a52b0..a6afe226 100644 --- a/makefile.win32 +++ b/makefile.win32 @@ -44,3 +44,12 @@ clean: deps cd scintilla && $(MAKE) -f makefile.win32 clean && cd .. cd plugins && $(MAKE) -f makefile.win32 clean && cd .. cd src && $(MAKE) -f makefile.win32 clean && cd .. + +.PHONY: install +DESTDIR='C:/Program Files/Geany' + +# requires admin privileges and MSYS +install: + cp -r data $(DESTDIR) + cp plugins/*.dll $(DESTDIR)/lib + cp geany.exe $(DESTDIR)/bin