1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

Provide better message when running make before configure

This commit is contained in:
Jonas Fonseca 2005-10-01 18:18:58 +02:00 committed by Jonas Fonseca
parent 5b67102f62
commit f0de61e598

View File

@ -1,9 +1,15 @@
path_to_top = .
include $(path_to_top)/Makefile.config
-include $(path_to_top)/Makefile.config
# TODO: Automagically rerun autoconf.
SUBDIRS = doc po src
CLEAN = features.log
ifeq ($(wildcard Makefile.config),)
# Catch all
$(MAKECMDGOALS) default:
@echo "You need to first run ./configure"
else
include $(path_to_top)/Makefile.lib
endif