Merge branch 'develop' into 'develop'

Fix makefile ordering.

See merge request embeddable-common-lisp/ecl!247
This commit is contained in:
Daniel Kochmański 2021-03-10 19:19:21 +00:00
commit 8428d6a35a

View file

@ -84,13 +84,13 @@ endif
all: $(DPP) ../libeclmin.a ../cinit.o
$(HDIR)/%.h: $(top_srcdir)/h/%.h
cp $< $@
$(HDIR)/impl/%.h: $(top_srcdir)/h/impl/%.h
mkdir -p $(HDIR)/impl
cp $< $@
$(HDIR)/%.h: $(top_srcdir)/h/%.h
cp $< $@
%.c: %.d $(DPP)
if test -f ../CROSS-DPP ; then ../CROSS-DPP $< $@ ; else $(DPP) $< $@ ; fi
%.o: %.d $(DPP) $(HFILES)