aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile41
1 files changed, 15 insertions, 26 deletions
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)