mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-12 23:37:38 +02:00
Fixing non-building of scheme/cyclone libs
This commit is contained in:
parent
e99e09d8f7
commit
93c17952dd
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -11,12 +11,15 @@ CCOMP = $(CC) $(CFLAGS)
|
||||||
INDENT_CMD = indent -linux -l80 -i2 -nut
|
INDENT_CMD = indent -linux -l80 -i2 -nut
|
||||||
|
|
||||||
# Directories
|
# Directories
|
||||||
|
SCHEME_DIR = scheme
|
||||||
EXAMPLE_DIR = examples
|
EXAMPLE_DIR = examples
|
||||||
HEADER_DIR = include/cyclone
|
HEADER_DIR = include/cyclone
|
||||||
TEST_DIR = tests
|
TEST_DIR = tests
|
||||||
|
|
||||||
# Source files
|
# 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)
|
COBJECTS = $(SLDFILES:.sld=.o)
|
||||||
HEADERS = $(HEADER_DIR)/runtime.h $(HEADER_DIR)/types.h
|
HEADERS = $(HEADER_DIR)/runtime.h $(HEADER_DIR)/types.h
|
||||||
TEST_SRC = $(TEST_DIR)/unit-tests.scm $(TEST_DIR)/srfi-60-tests.scm
|
TEST_SRC = $(TEST_DIR)/unit-tests.scm $(TEST_DIR)/srfi-60-tests.scm
|
||||||
|
|
Loading…
Add table
Reference in a new issue