From 9d61e46855394f84c5afd8f384a98bce740d0432 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Tue, 18 Jan 2000 02:07:04 +0000 Subject: [PATCH] Fixed rule with wildcard. --- demos/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/demos/Makefile b/demos/Makefile index 8d5f17292..65bb2ed61 100644 --- a/demos/Makefile +++ b/demos/Makefile @@ -31,15 +31,15 @@ endif # Check that we have a working `config.mk' in the above directory. # If not, issue a warning message, then stop there.. # -ifeq ($wildcard $(CONFIG_MK),) +ifeq ($(wildcard $(CONFIG_MK)),) no_config_mk := 1 endif ifdef no_config_mk exes: @echo Please compile the library before the demo programs! - @echo I need "$(TOP)/config.mk" to do that !! - +clean distclean: + @echo "I need \`$(TOP)/config.mk' to do that!" else ####################################################################