mirror of https://github.com/BOINC/boinc.git
28 lines
657 B
Makefile
28 lines
657 B
Makefile
# 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
|
|
|
|
BOINC_DIR = ../../boinc
|
|
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 = wrapper
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm $(PROGS)
|
|
|
|
wrapper: wrapper.o $(BOINC_LIB_DIR)/libboinc.a $(BOINC_API_DIR)/libboinc_api.a
|
|
g++ $(CXXFLAGS) -o wrapper wrapper.o libstdc++.a -pthread -lboinc_api -lboinc
|