boinc/samples/wrapper/Makefile

46 lines
1.0 KiB
Makefile
Raw Normal View History

# This should work on Linux. Modify as needed for other platforms.
# Change the following to match your installation
BOINC_DIR = ../..
BOINC_API_DIR = $(BOINC_DIR)/api
BOINC_LIB_DIR = $(BOINC_DIR)/lib
BOINC_ZIP_DIR = $(BOINC_DIR)/zip
PTHREAD = -pthread
CXXFLAGS += -g -O0 \
-Wall -W -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -fno-common \
-I$(BOINC_DIR) \
-I$(BOINC_LIB_DIR) \
-I$(BOINC_API_DIR) \
-I$(BOINC_ZIP_DIR) \
-L$(BOINC_API_DIR) \
-L$(BOINC_LIB_DIR) \
-L$(BOINC_ZIP_DIR) \
-L.
PROGS = wrapper
all: $(PROGS)
libstdc++.a:
2014-04-18 19:41:41 +00:00
ln -s `$(CXX) -print-file-name=libstdc++.a`
clean: distclean
distclean:
rm -f $(PROGS) *.o libstdc++.a
install: all
.PHONY: install all distclean clean
REGEXP_OBJS = \
regexp.o \
regsub.o \
regerror.o \
regexp_memory.o \
regexp_report.o
wrapper: wrapper.o libstdc++.a $(BOINC_LIB_DIR)/libboinc.a $(BOINC_API_DIR)/libboinc_api.a $(REGEXP_OBJS)
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -o wrapper wrapper.o $(REGEXP_OBJS) libstdc++.a $(PTHREAD) -lboinc_api -lboinc -lboinc_zip