From e611393dfaf6e22222c544ba181f355ffb844724 Mon Sep 17 00:00:00 2001 From: Stefan Gehn Date: Sat, 27 Sep 2014 16:29:25 +0200 Subject: [PATCH] Make windows install target depend on build target Add a dependency on the windows build target to allow building and installing GKrellM using a single target. This fixes calling "make install_windows" without a prior call to "make windows". --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e25ab71..d557b27 100644 --- a/Makefile +++ b/Makefile @@ -188,7 +188,7 @@ install_solaris: install_gkrellm.pc (cd src && ${MAKE} install_solaris) (cd server && ${MAKE} install_solaris) -install_windows: install_gkrellm.pc +install_windows: windows install_gkrellm.pc (cd po && ${MAKE} install) (cd src && ${MAKE} install_windows) (cd server && ${MAKE} install_windows)