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.
|
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
|
|
|
|
|