Initial commit

This commit is contained in:
Łukasz Moskała 2024-07-07 18:51:49 +02:00
commit 799ea9a90a
12 changed files with 1332 additions and 0 deletions

8
Makefile Normal file
View file

@ -0,0 +1,8 @@
BINS := cp2guest guestrun libguestd-cli
SRC_DIR := cmd
.PHONY: all $(BINS)
all: $(BINS)
$(BINS):
go build -C $(SRC_DIR)/$@ -o ../../bin/$@