create second part of lab

This commit is contained in:
Florian Hoss 2022-05-30 11:52:30 +02:00
parent 48763fe3d8
commit f0ff06b01f
6 changed files with 29 additions and 2 deletions

View file

@ -1,4 +1,4 @@
module frequency
module analyze
go 1.18

View file

@ -4,7 +4,7 @@ GoBUILD=$(GoCMD) build
GoCLEAN=$(GoCMD) clean
GoTEST=$(GoCMD) test
GoMOD=$(GoCMD) mod
BINARY_NAME=frequency
BINARY_NAME=tool
# To install GoLang please follow the installation instructions on https://go.dev/
all: build

View file

@ -0,0 +1,3 @@
module encrypt
go 1.18

View file

View file

@ -0,0 +1,7 @@
package main
import (
)
func main() {
}

View file

@ -0,0 +1,17 @@
# Go parameters
GoCMD=go
GoBUILD=$(GoCMD) build
GoCLEAN=$(GoCMD) clean
GoTEST=$(GoCMD) test
GoMOD=$(GoCMD) mod
BINARY_NAME=tool
# To install GoLang please follow the installation instructions on https://go.dev/
all: build
build:
$(GoBUILD) -o $(BINARY_NAME) -v
clean:
$(GOCLEAN)
rm -f $(BINARY_NAME)
deps:
$(GoMOD) tidy