File tree Expand file tree Collapse file tree 4 files changed +5
-13
lines changed Expand file tree Collapse file tree 4 files changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ release: MODE = Release$(shell getconf LONG_BIT)
16
16
release : OUTPUT_DIR = $(PWD ) /../Binaries/$(MODE )
17
17
release : mk_out_dir tests samples
18
18
19
- debug : OPTIMIZATION_LEVEL = -O0 -ggdb
19
+ debug : OPTIMIZATION_LEVEL = -O0 -g -gdwarf-2
20
20
debug : MODE = Debug$(shell getconf LONG_BIT)
21
21
debug : OUTPUT_DIR = $(PWD ) /../Binaries/$(MODE )
22
22
debug : mk_out_dir tests samples
77
77
@find . -iname * .o -exec rm ' {}' \;
78
78
@find ../Binaries -iname * .so -exec rm ' {}' \;
79
79
@find ../Binaries -iname * .txt -exec rm ' {}' \;
80
- @find ../Binaries -iname blackjackclient -exec rm ' {}' \;
81
- @find ../Binaries -iname blackjackserver -exec rm ' {}' \;
80
+ @find ../Binaries -iname SearchFile -exec rm ' {}' \;
81
+ @find ../Binaries -iname BingRequest -exec rm ' {}' \;
82
82
@find ../Binaries -iname syncdir -exec rm ' {}' \;
83
83
@find ../Binaries -iname test_runner -exec rm ' {}' \;
Original file line number Diff line number Diff line change 1
- $(OUTPUT_DIR ) /BingRequest : bingrequest
2
- mv bingrequest $@
3
-
4
- bingrequest : ../../collateral/Samples/BingRequest/bingrequest.cpp
1
+ $(OUTPUT_DIR ) /BingRequest : ../../collateral/Samples/BingRequest/bingrequest.cpp
5
2
$(CXX ) $(BASE_CXXFLAGS ) -I$(CASABLANCA_INCLUDE_DIR ) $^ -o $@ -L$(OUTPUT_DIR ) -lcasablanca -lboost_thread -Wno-sign-compare -Wno-unused-parameter
Original file line number Diff line number Diff line change 1
- $(OUTPUT_DIR ) /SearchFile : searchfile
2
- mv searchfile $@
3
-
4
- searchfile : ../../collateral/Samples/SearchFile/searchfile.cpp
1
+ $(OUTPUT_DIR ) /SearchFile : ../../collateral/Samples/SearchFile/searchfile.cpp
5
2
$(CXX ) $(BASE_CXXFLAGS ) -I$(CASABLANCA_INCLUDE_DIR ) $^ -o $@ -L$(OUTPUT_DIR ) -lcasablanca -lboost_thread -Wno-sign-compare -Wno-unused-parameter
Original file line number Diff line number Diff line change @@ -63,8 +63,6 @@ CXXFLAGS = -fPIC -std=c++11 $(STRICT_BASE_CXXFLAGS) -I../include -I./pch $(WARNI
63
63
LIBS = $(PKGCONFIG_LIBS ) -lboost_system -lboost_thread -lboost_locale -pthread -lstdc++ -lm # these are explicit for clang
64
64
LDFLAGS = $(BASE_LDFLAGS )
65
65
66
- CXX ?= g++-4.8
67
-
68
66
ifeq ($(OUTPUT_DIR ) ,)
69
67
LIBRARY_DST =$(MODE ) /$(LIBRARY )
70
68
else
You can’t perform that action at this time.
0 commit comments