mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-10 23:20:23 -07:00
Missing the installation part in the previous commit.
This commit is contained in:
parent
7aa9b4ce41
commit
167a62765b
1 changed files with 7 additions and 5 deletions
|
|
@ -126,14 +126,16 @@ install-base:
|
|||
# Here we would use the option -s but the install program in sourceforge-solaris
|
||||
# is broken.
|
||||
$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) \
|
||||
$(DESTDIR)$(ecldir) $(DESTDIR)$(includedir) $(DESTDIR)$(includedir)/ecl \
|
||||
$(DESTDIR)$(ecldir)/encodings
|
||||
$(DESTDIR)$(ecldir) $(DESTDIR)$(includedir) $(DESTDIR)$(includedir)/ecl
|
||||
for i in $(TARGETS); do \
|
||||
$(INSTALL_PROGRAM) $$i $(DESTDIR)$(bindir); \
|
||||
done
|
||||
for i in ../contrib/encodings/*; do \
|
||||
$(INSTALL_DATA) $$i $(DESTDIR)$(ecldir)/encodings; \
|
||||
done
|
||||
if [ -d encodings ]; then \
|
||||
$(mkinstalldirs) $(DESTDIR)$(ecldir)/encodings; \
|
||||
for i in ./encodings/*; do \
|
||||
$(INSTALL_DATA) $$i $(DESTDIR)$(ecldir)/encodings; \
|
||||
done \
|
||||
fi
|
||||
sed '/-CUT-/,$$d' ./ecl/config.h > ./ecl/config-install.h
|
||||
$(INSTALL_DATA) ./ecl/*.h $(DESTDIR)$(includedir)/ecl
|
||||
if (echo $(SUBDIRS) | grep gc); then \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue