[Assorted-commits] SF.net SVN: assorted: [357] hash-join/trunk/src/Makefile
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-11 04:52:15
|
Revision: 357 http://assorted.svn.sourceforge.net/assorted/?rev=357&view=rev Author: yangzhang Date: 2008-02-10 20:52:20 -0800 (Sun, 10 Feb 2008) Log Message: ----------- tweaks Modified Paths: -------------- hash-join/trunk/src/Makefile Modified: hash-join/trunk/src/Makefile =================================================================== --- hash-join/trunk/src/Makefile 2008-02-10 21:48:17 UTC (rev 356) +++ hash-join/trunk/src/Makefile 2008-02-11 04:52:20 UTC (rev 357) @@ -5,23 +5,30 @@ CFLAGS := -I. -Wall -lpthread # -lprofiler -CXX = g++ $(CFLAGS) -o $@ $^ +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) -g -pg + $(CXX) -pg +$(TARGET)-pg-opt: $(SRCS) + $(CXX) -pg -O3 + $(TARGET)-dbg: $(SRCS) - $(CXX) -g3 -fno-omit-frame-pointer + $(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 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |