mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 22:59:16 +02:00
Merge pull request #444 from okuoku/fix-Makefile
Makefile: Fix (chibi time) installation
This commit is contained in:
commit
dec0f3b1a5
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -34,6 +34,11 @@ CHIBI_IO_COMPILED_LIBS = lib/chibi/io/io$(SO)
|
|||
CHIBI_OPT_COMPILED_LIBS = lib/chibi/optimize/rest$(SO) \
|
||||
lib/chibi/optimize/profile$(SO)
|
||||
EXTRA_COMPILED_LIBS ?=
|
||||
|
||||
ifndef EXCLUDE_POSIX_LIBS
|
||||
CHIBI_COMPILED_LIBS += $(CHIBI_POSIX_COMPILED_LIBS)
|
||||
endif
|
||||
|
||||
COMPILED_LIBS = $(CHIBI_COMPILED_LIBS) $(CHIBI_IO_COMPILED_LIBS) \
|
||||
$(CHIBI_OPT_COMPILED_LIBS) $(CHIBI_CRYPTO_COMPILED_LIBS) \
|
||||
$(EXTRA_COMPILED_LIBS) \
|
||||
|
@ -42,7 +47,7 @@ COMPILED_LIBS = $(CHIBI_COMPILED_LIBS) $(CHIBI_IO_COMPILED_LIBS) \
|
|||
lib/srfi/98/env$(SO) lib/srfi/144/math$(SO) lib/scheme/time$(SO)
|
||||
|
||||
ifndef EXCLUDE_POSIX_LIBS
|
||||
COMPILED_LIBS += $(CHIBI_POSIX_COMPILED_LIBS) lib/srfi/18/threads$(SO)
|
||||
COMPILED_LIBS += lib/srfi/18/threads$(SO)
|
||||
endif
|
||||
|
||||
BASE_INCLUDES = include/chibi/sexp.h include/chibi/features.h include/chibi/install.h include/chibi/bignum.h
|
||||
|
|
Loading…
Add table
Reference in a new issue