mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
16 lines
302 B
Makefile
16 lines
302 B
Makefile
path_to_top = .
|
|
-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
|