mirror of https://github.com/BOINC/boinc.git
19 lines
422 B
Plaintext
19 lines
422 B
Plaintext
# This should work on Linux. Modify as needed for other platforms.
|
|
|
|
PROGS = wrapper
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm $(PROGS) *.o
|
|
|
|
REGEXP_OBJS = \
|
|
regexp.o \
|
|
regsub.o \
|
|
regerror.o \
|
|
regexp_memory.o \
|
|
regexp_report.o
|
|
|
|
wrapper: wrapper.o $(BOINC_LIB_DIR)/libboinc.a $(BOINC_API_DIR)/libboinc_api.a $(REGEXP_OBJS)
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) -o wrapper wrapper.o $(REGEXP_OBJS) -lboinc_api -lboinc -lboinc_zip $(STDCPPTC)
|