mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 20:52:22 +00:00
11 lines
241 B
Makefile
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
|