mirror of
https://github.com/kgretzky/evilginx2
synced 2026-06-08 15:15:53 +00:00
20 lines
395 B
Makefile
20 lines
395 B
Makefile
TARGET=evilginx
|
|
PACKAGES=core database log parser
|
|
|
|
.PHONY: all
|
|
all: build
|
|
|
|
build:
|
|
@go build -o ./bin/$(TARGET) -mod=vendor
|
|
|
|
clean:
|
|
@go clean
|
|
@rm -f ./bin/$(TARGET)
|
|
|
|
install:
|
|
@mkdir -p /usr/share/evilginx/phishlets
|
|
@mkdir -p /usr/share/evilginx/templates
|
|
@cp ./phishlets/* /usr/share/evilginx/phishlets/
|
|
@cp ./templates/* /usr/share/evilginx/templates/
|
|
@cp ./bin/$(TARGET) /usr/local/bin
|