Add basic makefiles #25

Merged
grumbulon merged 3 commits from make into master 2022-07-03 20:50:59 +00:00
1 changed files with 8 additions and 2 deletions
Showing only changes of commit 44cf729668 - Show all commits

10
Mkfile
View File

@ -1,3 +1,9 @@
GO=GO
awl: awl.GO
$GO build -o awl
awl: awl.go
$GO build -o awl
install:
$GO install .
test:
$GO test ./...