# HG changeset patch # User nenolod # Date 1150272721 25200 # Node ID ce65f2a60bddf05af56d0bf925862b4c51bbae61 # Parent a428d7e70c106499149fde3a115a45e6a8d7b646 [svn] - tell users to use GNU make diff -r a428d7e70c10 -r ce65f2a60bdd ChangeLog --- a/ChangeLog Wed Jun 14 00:52:27 2006 -0700 +++ b/ChangeLog Wed Jun 14 01:12:01 2006 -0700 @@ -1,3 +1,12 @@ +2006-06-14 07:52:27 +0000 William Pitcock + revision [1346] + - chase $(RM) change + + + Changes: Modified: + +1 -1 trunk/Plugins/General/scrobbler/Makefile.in + + 2006-06-14 07:51:53 +0000 William Pitcock revision [1344] - improvements diff -r a428d7e70c10 -r ce65f2a60bdd mk/objective.mk --- a/mk/objective.mk Wed Jun 14 00:52:27 2006 -0700 +++ b/mk/objective.mk Wed Jun 14 01:12:01 2006 -0700 @@ -8,17 +8,10 @@ OBJECTIVE_DATA = SUBDIRS = HEADERS = +V = 0 +VERBOSE ?= $(V) VERBOSITY = 0 -SHOW_CFLAGS = 0 - -#ifeq ($(SHOW_CFLAGS),0) -#ifeq ($(V),1) -#SHOW_CFLAGS = 1 -#endif -#ifeq ($(VERBOSE),1) -#SHOW_CFLAGS = 1 -#endif -#endif +SHOW_CFLAGS ?= $(VERBOSE) LIBDIR = $(libdir) BINDIR = $(bindir) @@ -132,6 +125,11 @@ fi build: + # test for GNU make + @if test "x$(MAKE_VERSION)" == "x"; then \ + echo "[Your make is not properly supported, please use GNU make.]"; \ + exit 1; \ + fi; $(MAKE) build-prehook @if test "x$(SUBDIRS)" != "x"; then \ for i in $(SUBDIRS); do \