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)