Skip to content

Commit

Permalink
chore: update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
MEhrn00 committed Jul 7, 2024
1 parent c35f7b8 commit 2a436eb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Payload_Type/thanatos/mythic/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ GOMOD := github.com/MythicAgents/thanatos

PROTOC = protoc

go_src := $(wildcard *.go) $(wildcard builder/*.go) $(wildcard builder/*/*.go) $(wildcard errors/*.go) $(wildcard commands/*/*.go)
protos := config/config.proto msg/checkin/checkin.proto
go_src := $(wildcard *.go) $(wildcard ./*/*.go) $(wildcard ./*/*/*.go)
proto_src := $(wildcard proto/*.proto) $(wildcard proto/*/*.proto) $(wildcard proto/*/*/*.proto)

protopath := proto
genprotopath := pb

VPATH := $(protopath)
generated_protos := $(protos:%.proto=pb/%.pb.go)

generated_protos := $(proto_src:$(protopath)/%.proto=pb/%.pb.go)

.PHONY: all
all: thanatos ## Build all targets
Expand Down

0 comments on commit 2a436eb

Please sign in to comment.