matterbridge/vendor/modernc.org/opt/Makefile

19 lines
421 B
Makefile
Raw Normal View History

2022-11-26 15:42:16 -08:00
# Copyright 2022 The Opt Authors. All rights reserved.
2022-01-30 15:27:37 -08:00
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
2022-11-26 15:42:16 -08:00
.PHONY: clean edit editor
2022-01-30 15:27:37 -08:00
clean:
2022-11-26 15:42:16 -08:00
rm -f log-* cpu.test mem.test *.out
2022-01-30 15:27:37 -08:00
go clean
edit:
2022-11-26 15:42:16 -08:00
@touch log
@if [ -f "Session.vim" ]; then gvim -S & else gvim -p Makefile *.go & fi
2022-01-30 15:27:37 -08:00
editor:
gofmt -l -s -w *.go
2022-11-26 15:42:16 -08:00
go test -o /dev/null -c
go install 2>&1 | tee log-editor