aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-10-06 19:53:27 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-10-06 19:53:27 +0200
commitde97337a13ffd480355148da252859a205e10b74 (patch)
treec6594fa868487ab9e15235c18e6b0edf86607bce /Makefile
parentCleanup in C code. (diff)
downloadcalp-de97337a13ffd480355148da252859a205e10b74.tar.gz
calp-de97337a13ffd480355148da252859a205e10b74.tar.xz
Fix re-export of add-child!
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a3fe93d2..2065bda9 100644
--- a/Makefile
+++ b/Makefile
@@ -17,8 +17,6 @@ C_FILES = $(wildcard src/*.c)
SCM_C_FILES = $(wildcard src/*.scm.c)
X_FILES = $(SCM_C_FILES:.scm.c=.x)
-.SECONDARY: $(X_FILES)
-
O_FILES = $(C_FILES:src/%.c=obj/%.o)
SCM_FILES = $(shell find module/ -type f -name \*.scm)
@@ -30,6 +28,9 @@ GUILE_C_FLAGS = -Lmodule \
-Wmacro-use-before-definition -Warity-mismatch \
-Wduplicate-case-datum -Wbad-case-datum
+.SECONDARY: $(X_FILES) $(O_FILES)
+
+
all: $(SO_FILES) $(GO_FILES)