[Assorted-commits] SF.net SVN: assorted:[1173] ydb/trunk/src/Makefile
Brought to you by:
yangzhang
From: <yan...@us...> - 2009-02-11 19:26:27
|
Revision: 1173 http://assorted.svn.sourceforge.net/assorted/?rev=1173&view=rev Author: yangzhang Date: 2009-02-11 19:26:20 +0000 (Wed, 11 Feb 2009) Log Message: ----------- - removed inline warnings due to problems in boost - include serpref in make clean - added "distclean" Modified Paths: -------------- ydb/trunk/src/Makefile Modified: ydb/trunk/src/Makefile =================================================================== --- ydb/trunk/src/Makefile 2009-02-06 06:16:46 UTC (rev 1172) +++ ydb/trunk/src/Makefile 2009-02-11 19:26:20 UTC (rev 1173) @@ -44,7 +44,7 @@ -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings \ -Winit-self -Wsign-promo -Wno-unused-parameter -Wc++0x-compat \ -Wparentheses -Wmissing-format-attribute -Wfloat-equal \ - -Winline -Wsynth $(CXXFLAGS) + -Wno-inline -Wsynth $(CXXFLAGS) PBCXXFLAGS := $(OPT) -Wall -Werror $(GPROF) all: $(TARGET) @@ -74,8 +74,11 @@ clamp < $< | sed "`echo -e '1i#src\n1a#end'`" > $@ clean: - rm -f $(GENSRCS) $(GENHDRS) $(OBJS) $(TARGET) main.lzz *.clamp_h + rm -f $(GENSRCS) $(GENHDRS) $(OBJS) $(TARGET) main.lzz *.clamp_h serperf +distclean: clean + rm -f all.h all.h.gch + doc: $(SRCS) $(HDRS) doxygen @@ -88,4 +91,4 @@ serperf: serperf.o ydb.o $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@ -# serperf.cc ydb.pb.h \ No newline at end of file +# serperf.cc ydb.pb.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |