Skip to content

Commit

Permalink
Cleaning Syzygy profiling data
Browse files Browse the repository at this point in the history
Updating the makefile so that the clean and gcc-profile-clean targets also
remove the profiling data files in the syzygy directory.

No functional change.

Resolves #136
  • Loading branch information
tjaderxyz authored and zamar committed Nov 30, 2014
1 parent a43f633 commit 9b4e123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile
Expand Up @@ -398,7 +398,7 @@ install:
-strip $(BINDIR)/$(EXE)

clean:
$(RM) $(EXE) $(EXE).exe *.o .depend *~ core bench.txt *.gcda ./syzygy/*.o
$(RM) $(EXE) $(EXE).exe *.o .depend *~ core bench.txt *.gcda ./syzygy/*.o ./syzygy/*.gcda

default:
help
Expand Down Expand Up @@ -462,7 +462,7 @@ gcc-profile-use:
all

gcc-profile-clean:
@rm -rf *.gcda *.gcno bench.txt
@rm -rf *.gcda *.gcno syzygy/*.gcda syzygy/*.gcno bench.txt

icc-profile-prepare:
$(MAKE) ARCH=$(ARCH) COMP=$(COMP) icc-profile-clean
Expand Down

0 comments on commit 9b4e123

Please sign in to comment.