mirror of https://github.com/BOINC/boinc.git
25 lines
507 B
Makefile
25 lines
507 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
|
|
|
|
CXXFLAGS = -g \
|
|
-I ../../boinc \
|
|
-I ../../boinc/lib \
|
|
-I ../../boinc/api \
|
|
-L ../../boinc/api \
|
|
-L ../../boinc/lib \
|
|
-L.
|
|
|
|
PROGS = wrapper
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm $(PROGS)
|
|
|
|
wrapper: wrapper.o
|
|
g++ $(CXXFLAGS) -o wrapper wrapper.o libstdc++.a -pthread -lboinc_api -lboinc
|