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.
19 lines
479 B
Plaintext
19 lines
479 B
Plaintext
cflags = -Wall -Wextra -g -Iboost_1_79_0
|
|
print_flags = -fdiagnostics-color=always
|
|
link_args = -c
|
|
|
|
libraries = -lsodium
|
|
|
|
rule cc
|
|
deps = gcc
|
|
depfile = $out.d
|
|
command = g++ -MD -MF $out.d $print_flags $link_args $cflags $libraries $in -o $out
|
|
|
|
build obj/call_frame.o: cc runtime_lib/call_frame.cpp
|
|
build obj/global_thread_pool.o: cc runtime_lib/global_thread_pool.cpp
|
|
|
|
build dist/main: cc runtime_lib/main.cpp obj/call_frame.o obj/global_thread_pool.o
|
|
link_args =
|
|
|
|
|