ref: 9d61e46855394f84c5afd8f384a98bce740d0432
parent: a5ab5ce791bc3f2d565e7f157e1fa8877cc6a430
author: Werner Lemberg <[email protected]>
date: Mon Jan 17 21:07:04 EST 2000
Fixed rule with wildcard.
--- a/demos/Makefile
+++ b/demos/Makefile
@@ -31,7 +31,7 @@
# 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
@@ -38,8 +38,8 @@
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
####################################################################