mirror of https://github.com/BOINC/boinc.git
30 lines
628 B
Makefile
30 lines
628 B
Makefile
# This should work on Linux. Modify as needed for other platforms.
|
|
|
|
BOINC_DIR = ../..
|
|
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 = sleeper
|
|
|
|
all: $(PROGS)
|
|
|
|
libstdc++.a:
|
|
ln -s `g++ -print-file-name=libstdc++.a`
|
|
|
|
clean:
|
|
rm $(PROGS)
|
|
|
|
distclean:
|
|
/bin/rm -f $(PROGS) *.o libstdc++.a
|
|
|
|
sleeper: sleeper.o libstdc++.a $(BOINC_LIB_DIR)/libboinc.a $(BOINC_API_DIR)/libboinc_api.a
|
|
g++ $(CXXFLAGS) -o sleeper sleeper.o libstdc++.a -pthread -lboinc_api -lboinc
|