aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-04-21 01:10:46 -0700
committerchrislu <chris.lu@gmail.com>2022-04-21 01:10:46 -0700
commit3885374edf80c5c07551c2a43948614b98936fe5 (patch)
tree9bb4aecfc9d184ded442781efededc00c9a2e11e /Makefile
parent6994e8819234648c01f232a9786a2bdeb275194e (diff)
downloadseaweedfs-3885374edf80c5c07551c2a43948614b98936fe5.tar.xz
seaweedfs-3885374edf80c5c07551c2a43948614b98936fe5.zip
conditionally build elastic, gocdk to reduce binary size
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 000000000..844c67172
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+BINARY = weed
+
+SOURCE_DIR = .
+
+all: install
+
+install:
+ cd weed; go install
+
+full_install:
+ cd weed; go install -tags "elastic gocdk"