2008-03-14 17:35:22 +00:00
|
|
|
# This should work on Linux. Modify as needed for other platforms.
|
|
|
|
|
|
|
|
# Do this first:
|
|
|
|
# ln -s `g++ -print-file-name=libstdc++.a`
|
|
|
|
# This creates a symbolic link to the C++ library,
|
|
|
|
# which is linked statically
|
|
|
|
|
2008-08-01 18:14:00 +00:00
|
|
|
BOINC_DIR = ../..
|
2008-03-14 17:35:22 +00:00
|
|
|
BOINC_API_DIR = $(BOINC_DIR)/api
|
|
|
|
BOINC_LIB_DIR = $(BOINC_DIR)/lib
|
|
|
|
|
|
|
|
CXXFLAGS = -g \
|
|
|
|
-I$(BOINC_DIR) \
|
|
|
|
-I$(BOINC_LIB_DIR) \
|
|
|
|
-I$(BOINC_API_DIR) \
|
|
|
|
-L$(BOINC_API_DIR) \
|
|
|
|
-L$(BOINC_LIB_DIR) \
|
|
|
|
-L.
|
|
|
|
|
|
|
|
PROGS = multi_thread
|
|
|
|
|
|
|
|
all: $(PROGS)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
/bin/rm -f $(PROGS)
|
|
|
|
|
|
|
|
multi_thread: multi_thread.o $(BOINC_API_DIR)/libboinc_api.a $(BOINC_LIB_DIR)/libboinc.a
|
|
|
|
$(CXX) $(CXXFLAGS) -o multi_thread multi_thread.o libstdc++.a -pthread -lboinc_api -lboinc
|