mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-13 16:00:11 -05:00
13 lines
214 B
Makefile
13 lines
214 B
Makefile
OUTPUT_DIR?=/usr/local/bin
|
|
|
|
steampipe:
|
|
go build -o ${OUTPUT_DIR}/steampipe
|
|
|
|
dashboard_assets:
|
|
$(MAKE) -C ui/dashboard
|
|
|
|
all:
|
|
$(MAKE) -C pluginmanager
|
|
$(MAKE) -C ui/dashboard
|
|
go build -o ${OUTPUT_DIR}/steampipe
|