Skip to content
Snippets Groups Projects
Commit 704522aa authored by Gerardo Ganis's avatar Gerardo Ganis
Browse files

Remove debug statements: looks liket the problem is fixed

parent 5a74d312
No related branches found
No related tags found
No related merge requests found
......@@ -58,9 +58,6 @@ ALLMAPS += $(PROOFBENCHMAP)
# include all dependency files
INCLUDEFILES += $(PROOFBENCHDEP)
# For debugging
DMAKEDIR = +[ -d $(dir $@) ] || mkdir -p $(dir $@)
##### local rules #####
.PHONY: all-$(MODNAME) clean-$(MODNAME) distclean-$(MODNAME)
......@@ -84,9 +81,7 @@ $(PROOFBENCHMAP): $(RLIBMAP) $(MAKEFILEDEP) $(PROOFBENCHL)
-d $(PROOFBENCHLIBDEPM) -c $(PROOFBENCHL)
$(PBDPAR): $(PBDPARH) $(PBDPARS)
$(DMAKEDIR)
pwd
stat $(dir $@)
$(MAKEDIR)
@echo "Generating PAR file $@..."
@(if test -d $(PBDPARDIR); then \
rm -fr $(PBDPARDIR); \
......@@ -112,14 +107,12 @@ $(PBDPAR): $(PBDPARH) $(PBDPARS)
par=`basename $(PBDPAR)`; \
pardir=`basename $(PBDPARDIR)`; \
tar cf - $$pardir | gzip > $$par || exit 1; \
pwd; echo "$$builddir/$(PBPARDIR)"; stat "$$builddir/$(PBPARDIR)"; mv $$par $$builddir/$(PBPARDIR) || exit 1; \
mv $$par $$builddir/$(PBPARDIR) || exit 1; \
cd $$builddir; \
rm -fr $(PBDPARDIR))
$(PBCPAR): $(PBCPARH) $(PBCPARS)
$(DMAKEDIR)
pwd
stat $(dir $@)
$(MAKEDIR)
@echo "Generating PAR file $@..."
@(if test -d $(PBCPARDIR); then \
rm -fr $(PBCPARDIR); \
......@@ -145,7 +138,7 @@ $(PBCPAR): $(PBCPARH) $(PBCPARS)
par=`basename $(PBCPAR)`; \
pardir=`basename $(PBCPARDIR)`; \
tar cf - $$pardir | gzip > $$par || exit 1; \
pwd; echo "$$builddir/$(PBPARDIR)"; stat "$$builddir/$(PBPARDIR)"; mv $$par $$builddir/$(PBPARDIR) || exit 1; \
mv $$par $$builddir/$(PBPARDIR) || exit 1; \
cd $$builddir; \
rm -fr $(PBCPARDIR))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment