Files
2021-02-02 14:13:48 +01:00

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