From 93c17952dd3ad629ad6263c8f27ecc79d3f917a2 Mon Sep 17 00:00:00 2001 From: Koz Ross Date: Sat, 4 Feb 2017 16:46:12 +1300 Subject: [PATCH] Fixing non-building of scheme/cyclone libs --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 65162611..1d78853b 100644 --- a/Makefile +++ b/Makefile @@ -11,12 +11,15 @@ CCOMP = $(CC) $(CFLAGS) INDENT_CMD = indent -linux -l80 -i2 -nut # Directories +SCHEME_DIR = scheme EXAMPLE_DIR = examples HEADER_DIR = include/cyclone TEST_DIR = tests # Source files -SLDFILES = $(wildcard scheme/*.sld) $(wildcard srfi/*.sld) +SLDFILES = $(wildcard $(SCHEME_DIR)/*.sld) \ + $(wildcard srfi/*.sld) \ + $(wildcard $(SCHEME_DIR)/cyclone/*.sld) COBJECTS = $(SLDFILES:.sld=.o) HEADERS = $(HEADER_DIR)/runtime.h $(HEADER_DIR)/types.h TEST_SRC = $(TEST_DIR)/unit-tests.scm $(TEST_DIR)/srfi-60-tests.scm