diff --git a/Makefile b/Makefile index 813e908..def9156 100644 --- a/Makefile +++ b/Makefile @@ -114,18 +114,19 @@ output/errors : $(patsubst %,$(SRCDIR)/%,$(ERROR_FILES)) sort -u $^ -o $@ $(OUTPUTS_STATIC) : output/% : static/% - ln -sf $(realpath $<) $@ + cp -p $< $@ $(OUTPUTS_BIN) : output/% : $(SRCDIR)/bin/% - ln -sf $(realpath $<) $@ + cp -p $< $@ $(OUTPUTS_BIN_COMBI) : output/% : $(SRCDIR)/bin-combi/% - ln -sf $(realpath $<) $@ + cp -p $< $@ $(OUTPUTS_BIN_OTHER) : output/% : $(SRCDIR)/bin-% - ln -sf $(realpath $<) $@ + cp -p $< $@ $(INDEX_DYNAMIC) : output/% : $(ALL_OUTPUTS) ( cd $(dir $@) ; \ - tree -H "." -C -T "iPXE files" --filesfirst \ - -I index.html -o index.html ) + tree -H "." -C -T "iPXE files" -s -D --filesfirst \ + -I index.html -o index.html ; \ + sed -i 's/
/\n /' index.html )