mirror of https://github.com/BOINC/boinc.git
7 lines
285 B
Plaintext
7 lines
285 B
Plaintext
|
# make sign_executable with minimal dependencies, e.g. no MySQL
|
||
|
#
|
||
|
all: sign_executable
|
||
|
|
||
|
sign_executable:
|
||
|
g++ -o sign_executable -I.. -I../lib ../lib/crypt.cpp ../lib/md5.cpp ../lib/md5_file.cpp ../lib/filesys.cpp ../lib/util.cpp ../lib/str_util.cpp -lssl -lcrypto sign_executable.cpp
|