From 52f0c0c33bcd9fa62e338985bd9ad64a5adb4159 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Tue, 4 Sep 2018 17:02:16 -0700 Subject: [PATCH] update Makefile --- Makefile | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d9f4670..5b3091e 100644 --- a/Makefile +++ b/Makefile @@ -2,13 +2,30 @@ .DEFAULT_GOAL := build ROOT := github.com/zrepl/zrepl -SUBPKGS := cmd +SUBPKGS += client +SUBPKGS += config +SUBPKGS += daemon +SUBPKGS += daemon/connecter +SUBPKGS += daemon/filters +SUBPKGS += daemon/job +SUBPKGS += daemon/logging +SUBPKGS += daemon/nethelpers +SUBPKGS += daemon/pruner +SUBPKGS += daemon/serve +SUBPKGS += daemon/snapper +SUBPKGS += daemon/streamrpcconfig +SUBPKGS += endpoint +SUBPKGS += logger +SUBPKGS += pruning SUBPKGS += replication SUBPKGS += replication/fsrep SUBPKGS += replication/pdu SUBPKGS += replication/internal/queue SUBPKGS += replication/internal/diff -SUBPKGS += logger util zfs +SUBPKGS += tlsconf +SUBPKGS += util +SUBPKGS += version +SUBPKGS += zfs _TESTPKGS := $(ROOT) $(foreach p,$(SUBPKGS),$(ROOT)/$(p))