Skip to content

Commit

Permalink
Finally provide name for the dashboard: orchidtop.
Browse files Browse the repository at this point in the history
  • Loading branch information
saurik committed Aug 21, 2024
1 parent f0f6289 commit 12f3bb5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tst-network/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 $@

0 comments on commit 12f3bb5

Please sign in to comment.