1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 20:52:22 +00:00
2018-12-16 12:37:35 +08:00

11 lines
241 B
Makefile

# Copyright 2018 <chaishushan{AT}gmail.com>. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
default:
-go build -o a.out && ./a.out
-@rm a.out
clean:
-@rm a.out