This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
swb6-it-sec/Lab04/part01-encrypt/makefile

17 lines
324 B
Makefile
Raw Normal View History

2022-05-30 09:36:08 +02:00
# Go parameters
GoCMD=go
GoBUILD=$(GoCMD) build
GoCLEAN=$(GoCMD) clean
GoTEST=$(GoCMD) test
GoMOD=$(GoCMD) mod
2022-05-30 11:52:30 +02:00
BINARY_NAME=tool
2022-05-30 09:36:08 +02:00
# 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