From b3c1653346dc558ac2a68c0e37cedd067571dabf Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 24 Aug 2009 16:32:53 +0000 Subject: [PATCH] 2009-08-24 18:32 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/global.mk % Added all/clean/install as .PHONY targets. ! Fixed one error message. (had mistyped HB_ARCHITECTURE) --- harbour/ChangeLog | 5 +++++ harbour/config/global.mk | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d1ec25b526..bfcf1ea213 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-24 18:32 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/global.mk + % Added all/clean/install as .PHONY targets. + ! Fixed one error message. (had mistyped HB_ARCHITECTURE) + 2009-08-24 18:19 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * INSTALL + Improvements. (f.e. moved non-*nix sections to top of diff --git a/harbour/config/global.mk b/harbour/config/global.mk index 5fb654e217..683b275ee6 100644 --- a/harbour/config/global.mk +++ b/harbour/config/global.mk @@ -46,6 +46,8 @@ substpat := !@!@ # a performance boost on a slow system. .SUFFIXES: +.PHONY: all clean install + need := 3.81 ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) @@ -850,7 +852,7 @@ ifeq ($(HB_COMPILER),) endif ifeq ($(HB_PLATFORM),) - $(error ! HB_ARCHICTECTURE not set, couldn't autodetect) + $(error ! HB_PLATFORM not set, couldn't autodetect) endif ifeq ($(HB_COMPILER),) $(error ! HB_COMPILER not set, couldn't autodetect)