-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
22 lines (17 loc) · 987 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# #############################################################################
# # File: Makefile #
# # Project: goframe #
# # Created Date: 2023/08/12 00:57:46 #
# # Author: realjf #
# # ----- #
# # Last Modified: 2023/08/12 00:57:48 #
# # Modified By: realjf #
# # ----- #
# # Copyright (c) 2023 #
# #############################################################################
.PHONY: build
build:
go build github.com/realjf/goframe
.PHONY: run
run:
go run goframe.go