bettercap/Makefile
Simone Margaritelli d8aeecb99f new: embedded ui
2024-08-21 17:33:47 +02:00

48 lines
1.0 KiB
Makefile

TARGET ?= bettercap
PACKAGES ?= core firewall log modules network packets session tls
PREFIX ?= /usr/local
GO ?= go
all: build
build: resources ui
$(GOFLAGS) $(GO) build -o $(TARGET) .
build_with_race_detector: resources
$(GOFLAGS) $(GO) build -race -o $(TARGET) .
resources: network/manuf.go
ui: ./modules/ui/ui/dist/ui/index.html
./modules/ui/ui/dist/ui/index.html:
@cd modules/ui/ui && make build
network/manuf.go:
@python3 ./network/make_manuf.py
install:
@mkdir -p $(DESTDIR)$(PREFIX)/share/bettercap/caplets
@cp bettercap $(DESTDIR)$(PREFIX)/bin/
docker:
@docker build -t bettercap:latest .
test:
$(GOFLAGS) $(GO) test -covermode=atomic -coverprofile=cover.out ./...
html_coverage: test
$(GOFLAGS) $(GO) tool cover -html=cover.out -o cover.out.html
benchmark: server_deps
$(GOFLAGS) $(GO) test -v -run=doNotRunTests -bench=. -benchmem ./...
fmt:
$(GO) fmt -s -w $(PACKAGES)
clean:
$(RM) $(TARGET)
$(RM) -r build
.PHONY: all build build_with_race_detector resources install docker test html_coverage benchmark fmt clean