mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 06:09:18 +02:00
resolved conflicts
This commit is contained in:
commit
605a8dc87b
1 changed files with 5 additions and 3 deletions
8
Makefile
8
Makefile
|
@ -107,18 +107,20 @@ test: chibi-scheme$(EXE)
|
|||
|
||||
install: chibi-scheme$(EXE)
|
||||
mkdir -p $(DESTDIR)$(BINDIR)
|
||||
cp chibi-scheme $(DESTDIR)$(BINDIR)/
|
||||
cp chibi-scheme$(EXE) $(DESTDIR)$(BINDIR)/
|
||||
mkdir -p $(DESTDIR)$(MODDIR)
|
||||
cp init.scm $(DESTDIR)$(MODDIR)/
|
||||
mkdir -p $(DESTDIR)$(INCDIR)
|
||||
cp $(INCLUDES) include/chibi/eval.h $(DESTDIR)$(INCDIR)/
|
||||
mkdir -p $(DESTDIR)$(LIBDIR)
|
||||
cp libchibi-scheme$(SO) $(DESTDIR)$(LIBDIR)/
|
||||
cp libchibi-scheme$(SO) $(DESTDIR)$(SOLIBDIR)/
|
||||
-cp libchibi-scheme$(SO).a $(DESTDIR)$(LIBDIR)/
|
||||
if type ldconfig >/dev/null 2>/dev/null; then ldconfig; fi
|
||||
|
||||
uninstall:
|
||||
rm -f $(BINDIR)/chibi-scheme*
|
||||
rm -f $(LIBDIR)/libchibi-scheme$(SO)
|
||||
rm -f $(SOLIBDIR)/libchibi-scheme$(SO)
|
||||
rm -f $(LIBDIR)/libchibi-scheme$(SO).a
|
||||
cd $(INCDIR) && rm -f $(INCLUDES) include/chibi/eval.h
|
||||
rm -f $(MODDIR)/*.scm
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue