diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-22T19·30+0000 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-22T19·30+0000 |
commit | 6b5f89f2cf954cae1623a6cd3a8f7eb78e19e85b (patch) | |
tree | 8edf557234e200d60daa9d472668ed89156d1877 /Makefile.lib | |
parent | 754c05ed6c3b88f8180ae8686e030b5b02b23d43 (diff) |
Drop the dependency on Automake
Diffstat (limited to 'Makefile.lib')
-rw-r--r-- | Makefile.lib | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Makefile.lib b/Makefile.lib index f2eea7ac81d2..6c59c759695e 100644 --- a/Makefile.lib +++ b/Makefile.lib @@ -1,6 +1,13 @@ default: all +# Include Autoconf variables. +Makefile.config: Makefile.config.in + ./config.status + +include Makefile.config + + # Include all sub-Makefiles. define include_sub_makefile = d := $$(patsubst %/, %, $$(dir $(1))) @@ -10,12 +17,6 @@ endef $(foreach mf, $(SUBS), $(eval $(call include_sub_makefile, $(mf)))) -# Include Autoconf variables. -Makefile.config: Makefile.config.in - ./config.status - -include Makefile.config - clean_list := dist_files := |