You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
204 B
Plaintext
12 lines
204 B
Plaintext
2 years ago
|
cflags = -Wall -Wextra -g
|
||
|
print_flags = -fdiagnostics-color=always
|
||
|
|
||
|
libraries = -lsodium
|
||
|
|
||
|
rule cc
|
||
|
command = g++ $print_flags $cflags $libraries $in -o $out
|
||
|
|
||
|
build dist/main: cc runtime_lib/main.cpp
|
||
|
|
||
|
|