mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-23 13:01:42 -08:00
another fix for install target
This commit is contained in:
parent
cb3294fc7b
commit
9a47e3b6c5
2 changed files with 7 additions and 3 deletions
|
|
@ -222,7 +222,7 @@ install:
|
|||
$(LN_S) @SONAME3@ @SONAME1@ && \
|
||||
$(LN_S) @SONAME3@ @SONAME@ ) \
|
||||
fi
|
||||
$(INSTALL_PROGRAM) $(DPP) $(DESTDIR)$(ecldir)
|
||||
$(INSTALL_PROGRAM) c/$(DPP) $(DESTDIR)$(ecldir)
|
||||
$(INSTALL_PROGRAM) $(ECL_MIN) $(DESTDIR)$(ecldir)
|
||||
for i in `cat modules`; do \
|
||||
case $$i in \
|
||||
|
|
|
|||
|
|
@ -12,8 +12,8 @@ VPATH = @srcdir@
|
|||
#
|
||||
CC = @CC@
|
||||
TRUE_CC = $(CC)
|
||||
CFLAGS = -Wall -I. -I@true_builddir@ -I$(srcdir) -I../ecl/gc \
|
||||
-DECL_BUILD -DECL_API -DECL_NO_LEGACY @CPPFLAGS@ @CFLAGS@ \
|
||||
CFLAGS = -Wall -Wno-missing-braces -I. -I@true_builddir@ -I$(srcdir) \
|
||||
-I../ecl/gc -DECL_BUILD -DECL_API -DECL_NO_LEGACY @CPPFLAGS@ @CFLAGS@ \
|
||||
@ECL_CFLAGS@ -c
|
||||
|
||||
# The following flags could be added and used by GCC
|
||||
|
|
@ -74,6 +74,10 @@ OBJS = main.o symbol.o package.o cons.o list.o apply.o eval.o \
|
|||
.SUFFIXES: .c .o .d .s
|
||||
.PHONY: all
|
||||
|
||||
ifndef VERBOSE
|
||||
.SILENT:
|
||||
endif
|
||||
|
||||
all: $(DPP) ../libeclmin.a ../cinit.o
|
||||
|
||||
.d.c: $(DPP)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue