We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec9330c commit caba043Copy full SHA for caba043
makefile
@@ -21,11 +21,14 @@ LIBS = -lzmq -lX11 -lXcomposite -lXtst -lXext -lXfixes -lprotobuf -lspdlog -lfmt
21
22
23
all: FLAGS+=-O3 -g
24
-all: include/protos/api.pb.h matrix trampoline build/diagnosis tools/deployTools/bootServer
+all: tracy include/protos/api.pb.h matrix trampoline build/diagnosis tools/deployTools/bootServer
25
26
profiled: FLAGS+=-O3 -g -D TRACY_ENABLE
27
profiled: matrix
28
29
+tracy:
30
+ git submodule update --init
31
+
32
matrix: $(ALL_OBJECTS) build/main.o
33
g++ -std=c++20 $(FLAGS) -g -o matrix build/main.o $(ALL_OBJECTS) $(LIBS) -Wl,--as-needed $(INCLUDES)
34
0 commit comments