From 5c02124f1e11b3e57fcea3d941ae883946ea03de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 21 Jul 2022 18:06:17 +0200 Subject: Add pre-compiled "headers", ensuring everything compiles again. --- Makefile | 41 +++++++++++++++-------------------------- 1 file changed, 15 insertions(+), 26 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 96c0ea58..b1f51b28 100644 --- a/Makefile +++ b/Makefile @@ -14,44 +14,30 @@ GUILE_VERSION=$(shell $(GUILE) -c '(display (version))') GUILE_SITE_DIR=$(shell $(GUILE) -c "(display (%site-dir))") GUILE_CCACHE_DIR=$(shell $(GUILE) -c "(display (%site-ccache-dir))") -not_scm_files = \ - c/operators \ - c/preprocessor \ - c/cpp \ - c/parse \ - c/lex \ - c/eval \ - c/eval/environment \ - zzz_sentinel - - scm_files = \ - c/cpp-environment \ - c/cpp-environment/object-like-macro \ - c/cpp-environment/internal-macro \ - c/cpp-environment/function-like-macro \ - c/cpp \ - c/eval2 \ - c/lex2 \ - c/line-fold \ - c/preprocessor2 \ - c/trigraph \ - hnh/util \ - hnh/util/object \ - hnh/util/path - -# scm_files = \ base64 \ + c/ast \ c/compiler \ c/cpp-environment \ c/cpp-environment/function-like-macro \ c/cpp-environment/internal-macro \ c/cpp-environment/object-like-macro \ + c/cpp-types \ + c/cpp-util \ + c/eval-basic \ c/eval2 \ + c/flatten-begin \ c/lex2 \ c/line-fold \ + c/old/cpp \ + c/old/lex \ + c/old/operators \ + c/old/parse \ + c/parse2 \ c/preprocessor2 \ + c/to-token \ c/trigraph \ + c/unlex \ calp \ calp/benchmark/parse \ calp/config-base \ @@ -104,7 +90,9 @@ scm_files = \ hnh/util/options \ hnh/util/path \ hnh/util/tree \ + hnh/util/type \ hnh/util/uuid \ + hnh/util/values \ srfi/srfi-41/util \ srfi/srfi-64/test-error \ srfi/srfi-64/util \ @@ -159,6 +147,7 @@ scm_files = \ web/uri-query \ xdg/basedir + SCM_FILES = $(scm_files:%=module/%.scm) GO_FILES = $(SCM_FILES:module/%.scm=obj-$(GUILE_VERSION)/%.go) -- cgit v1.2.3