From 12f3bb57b937a3ecd68d500607ae3fd96283815d Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 21 Aug 2024 06:51:45 +0000 Subject: [PATCH] Finally provide name for the dashboard: orchidtop. --- tst-network/makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tst-network/makefile b/tst-network/makefile index 49e0c8c98..9ee39633a 100644 --- a/tst-network/makefile +++ b/tst-network/makefile @@ -29,22 +29,22 @@ include env/target.mk version := 0.9 .PHONY: all -all: $(output)/$(machine)/orchid$(exe) +all: $(output)/$(machine)/orchidtop$(exe) .PHONY: test -test: $(output)/$(machine)/orchid$(exe) +test: $(output)/$(machine)/orchidtop$(exe) $< $(args) .PHONY: debug -debug: $(output)/$(machine)/orchid$(exe) +debug: $(output)/$(machine)/orchidtop$(exe) lldb -o 'run $(args)' $< .PHONY: record -record: $(output)/$(machine)/orchid$(exe) +record: $(output)/$(machine)/orchidtop$(exe) perf record --call-graph dwarf $< $(args) .PHONY: report -report: $(output)/$(machine)/orchid$(exe) +report: $(output)/$(machine)/orchidtop$(exe) perf report --sort=cpu $(call include,vpn/target.mk) @@ -59,7 +59,7 @@ cflags/$(pwd)/source/main.cpp += -Wno-implicit-const-int-float-conversion include env/output.mk -$(output)/%/orchid$(exe): $(patsubst %,$(output)/$$*/%,$(object) $(linked)) +$(output)/%/orchidtop$(exe): $(patsubst %,$(output)/$$*/%,$(object) $(linked)) @echo [LD] $@ @set -o pipefail; $(cxx) $(more/$*) $(wflags) -o $@ $(filter %.o,$^) $(filter %.a,$^) $(filter %.lib,$^) $(lflags) 2>&1 | nl @ls -la $@