From a970c4ff4d7e1cd34d8e45767a17d0b20eee2ba4 Mon Sep 17 00:00:00 2001 From: "Sean C. Rhea" Date: Thu, 7 Sep 2006 01:24:30 +0000 Subject: [PATCH] call qmake if necessary --- src/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index 72f5fcec2..5ccdc02ab 100644 --- a/src/Makefile +++ b/src/Makefile @@ -20,8 +20,11 @@ SUBDIRS=lib cmd gui # order is important! -all: subdirs -.PHONY: all subdirs clean +all: gui-makefile subdirs +.PHONY: all gui-makefile subdirs clean + +gui-makefile: + cd gui; qmake GoldenCheetah.pro clean: @for dir in $(SUBDIRS); do $(MAKE) -wC $$dir clean; done