Skip to content

Commit

Permalink
Moved big traces to separate repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sv3n committed Sep 10, 2014
1 parent 6e3595f commit ac2eb8f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 1,025,094 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ drampower
test/libdrampowertest/library_test
*.gcno
*.gcda
traces/*
13 changes: 10 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ XERCES_LDFLAGS := -L$(XERCES_LIB) -lxerces-c
# Targets
##########################################

all: ${BINARY} lib parserlib
all: ${BINARY} lib parserlib traces

$(BINARY): ${XMLPARSEROBJECTS} ${CLIOBJECTS}
$(CXX) ${CXXFLAGS} $(LDFLAGS) -o $@ $^ $(XERCES_LDFLAGS)
Expand All @@ -116,6 +116,7 @@ parserlib: ${XMLPARSEROBJECTS}
clean:
$(RM) $(ALLOBJECTS) $(DEPENDENCIES) $(BINARY) $(LIBS)
$(MAKE) -C test/libdrampowertest clean
$(RM) traces.zip

coverageclean:
$(RM) ${ALLSOURCES:.cc=.gcno} ${ALLSOURCES:.cc=.gcda}
Expand All @@ -125,9 +126,15 @@ pretty:
uncrustify -c src/uncrustify.cfg $(ALLSOURCES) --no-backup
uncrustify -c src/uncrustify.cfg $(ALLHEADERS) --no-backup

test:
test: traces
python test/test.py -v

.PHONY: clean pretty test
traces.zip:
wget --quiet --output-document=traces.zip https://github.com/Sv3n/DRAMPowerTraces/archive/master.zip

traces: traces.zip
unzip traces.zip && mv DRAMPowerTraces-master/traces/* traces/ && rm -rf DRAMPowerTraces-master

.PHONY: clean pretty test traces

-include $(DEPENDENCIES)
Loading

0 comments on commit ac2eb8f

Please sign in to comment.