2013-01-02 20:31:14 +00:00
|
|
|
all: boinc_gahp
|
|
|
|
|
2013-04-03 00:04:45 +00:00
|
|
|
clean:
|
|
|
|
rm boinc_gahp
|
|
|
|
|
2013-02-21 00:20:00 +00:00
|
|
|
boinc_gahp: boinc_gahp.cpp ../../lib/remote_submit.h ../../lib/remote_submit.cpp
|
2013-01-17 03:42:48 +00:00
|
|
|
g++ -g -O0 -I../../lib \
|
2013-02-21 00:20:00 +00:00
|
|
|
-o boinc_gahp boinc_gahp.cpp ../../lib/remote_submit.cpp \
|
2013-01-17 03:42:48 +00:00
|
|
|
-L../../lib -lboinc -lpthread -lcurl
|
|
|
|
|
2013-02-21 00:20:00 +00:00
|
|
|
test: test.cpp ../../lib/remote_submit.cpp ../../lib/remote_submit.h
|
2013-01-25 08:35:00 +00:00
|
|
|
g++ -g -o test -I../../lib \
|
2013-02-21 00:20:00 +00:00
|
|
|
test.cpp ../../lib/remote_submit.cpp \
|
2013-02-02 06:50:50 +00:00
|
|
|
-L../../lib -lboinc -lcurl
|