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