mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-07 13:16:36 +02:00
makefile tweaks from Lorenzo Campedelli (issue 28)
This commit is contained in:
parent
49174f31ba
commit
8946aaca25
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -92,7 +92,7 @@ COMPILED_LIBS := lib/srfi/27/rand$(SO) lib/srfi/33/bit$(SO) \
|
||||||
|
|
||||||
libs: $(COMPILED_LIBS)
|
libs: $(COMPILED_LIBS)
|
||||||
|
|
||||||
INCLUDES = include/chibi/sexp.h include/chibi/features.h include/chibi/install.h
|
INCLUDES = include/chibi/sexp.h include/chibi/features.h include/chibi/install.h include/chibi/bignum.h
|
||||||
|
|
||||||
include/chibi/install.h: Makefile
|
include/chibi/install.h: Makefile
|
||||||
echo '#define sexp_so_extension "'$(SO)'"' > $@
|
echo '#define sexp_so_extension "'$(SO)'"' > $@
|
||||||
|
@ -174,8 +174,8 @@ test: chibi-scheme$(EXE)
|
||||||
install: chibi-scheme$(EXE)
|
install: chibi-scheme$(EXE)
|
||||||
mkdir -p $(DESTDIR)$(BINDIR)
|
mkdir -p $(DESTDIR)$(BINDIR)
|
||||||
cp chibi-scheme$(EXE) $(DESTDIR)$(BINDIR)/
|
cp chibi-scheme$(EXE) $(DESTDIR)$(BINDIR)/
|
||||||
|
cp tools/genstubs.scm $(DESTDIR)$(BINDIR)/
|
||||||
mkdir -p $(DESTDIR)$(MODDIR)
|
mkdir -p $(DESTDIR)$(MODDIR)
|
||||||
cp lib/init.scm lib/config.scm $(DESTDIR)$(MODDIR)/
|
|
||||||
cp -r lib/ $(DESTDIR)$(MODDIR)/
|
cp -r lib/ $(DESTDIR)$(MODDIR)/
|
||||||
mkdir -p $(DESTDIR)$(INCDIR)
|
mkdir -p $(DESTDIR)$(INCDIR)
|
||||||
cp $(INCLUDES) include/chibi/eval.h $(DESTDIR)$(INCDIR)/
|
cp $(INCLUDES) include/chibi/eval.h $(DESTDIR)$(INCDIR)/
|
||||||
|
|
Loading…
Add table
Reference in a new issue