fix(build): fix source path in the Makefile

This commit is contained in:
Łukasz Mierzwa
2019-10-15 11:58:22 +01:00
parent e5793f49fe
commit b76e90d289

View File

@@ -12,7 +12,7 @@ PORT := 8080
# based on http://blog.jgc.org/2011/07/gnu-make-recursive-wildcard-function.html
rwildcard = $(foreach d, $(wildcard $1*), $(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d))
SOURCES := $(wildcard *.go) $(call rwildcard, internal, *)
SOURCES := $(call rwildcard, cmd internal, *)
ASSET_SOURCES := $(call rwildcard, ui/public ui/src, *)
GO_BINDATA_MODE := prod