mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
06ea255a22
The root makefile is converted as well as some leaf Makefiles. This also brings in the required infrastructure and adjusts configure.in appropriately. I converted only makefiles containing no configurable stuff, since that'll require more consideration yet.
19 lines
345 B
Makefile
19 lines
345 B
Makefile
-include Makefile.config
|
|
# This should be _really_ ., but only after we have src/Makefile.
|
|
# Otherwise, it wouldn't be set right in the submakefiles.
|
|
path_to_top = ..
|
|
|
|
# TODO: Automagically rerun autoconf.
|
|
|
|
SUBDIRS = doc po src
|
|
|
|
|
|
all: all-recursive
|
|
|
|
clean: clean-recursive
|
|
rm -rf features.log
|
|
|
|
install: install-recursive
|
|
|
|
-include Makefile.lib
|