[Assorted-commits] SF.net SVN: assorted: [489] hash-join/trunk/src
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-24 06:49:34
|
Revision: 489 http://assorted.svn.sourceforge.net/assorted/?rev=489&view=rev Author: yangzhang Date: 2008-02-23 22:49:38 -0800 (Sat, 23 Feb 2008) Log Message: ----------- moved to simple-build Modified Paths: -------------- hash-join/trunk/src/bench.bash Added Paths: ----------- hash-join/trunk/src/build Removed Paths: ------------- hash-join/trunk/src/Makefile Deleted: hash-join/trunk/src/Makefile =================================================================== --- hash-join/trunk/src/Makefile 2008-02-24 06:44:21 UTC (rev 488) +++ hash-join/trunk/src/Makefile 2008-02-24 06:49:38 UTC (rev 489) @@ -1,46 +0,0 @@ -TARGET := hashjoin -SRCS := hashjoin.cc -export TARGET - -### begin common makefrag - -CFLAGS := -I. -Wall -lpthread # -lprofiler - -CXX = g++ $(CFLAGS) -o $@ $< - -all: pg -dbg: $(TARGET)-dbg -opt: $(TARGET)-opt -pg: $(TARGET)-pg -pg-opt: $(TARGET)-pg-opt -goo: $(TARGET)-goo - -$(TARGET)-pg: $(SRCS) - $(CXX) -pg - -$(TARGET)-pg-opt: $(SRCS) - $(CXX) -pg -O3 - -$(TARGET)-dbg: $(SRCS) - $(CXX) -g3 - -$(TARGET)-opt: $(SRCS) - $(CXX) -g -O3 -fno-omit-frame-pointer - -$(TARGET)-goo: $(SRCS) - $(CXX) -lprofile - -doc: doc/html/index.html - -doc/html/index.html: $(SRCS) Doxyfile - doxygen - -clean: - rm -rf $(TARGET)-opt $(TARGET)-dbg $(TARGET)-pg doc - -.PHONY: clean dbg opt pg bench doc - -### end common makefrag - -bench: $(TARGET)-opt - ./bench.bash Modified: hash-join/trunk/src/bench.bash =================================================================== --- hash-join/trunk/src/bench.bash 2008-02-24 06:44:21 UTC (rev 488) +++ hash-join/trunk/src/bench.bash 2008-02-24 06:49:38 UTC (rev 489) @@ -9,6 +9,6 @@ for i in $configs ; do for j in {1..3} ; do - ./$TARGET-opt $i $MOVIEDATA/movies.dat $MOVIEDATA/actresses.dat + ./hashjoin-opt $i $MOVIEDATA/movies.dat $MOVIEDATA/actresses.dat done done >& log Added: hash-join/trunk/src/build =================================================================== --- hash-join/trunk/src/build (rev 0) +++ hash-join/trunk/src/build 2008-02-24 06:49:38 UTC (rev 489) @@ -0,0 +1,3 @@ +hashjoin: + srcs: [hashjoin.cc] + libs: [pthread] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |