30 lines
589 B
Makefile
30 lines
589 B
Makefile
# List any generated files here
|
|
TARGETS = promql.go
|
|
|
|
# List any source files used to generate the targets here
|
|
SOURCES = gen.go \
|
|
promql.peg
|
|
|
|
# List any directories that have their own Makefile here
|
|
SUBDIRS =
|
|
|
|
# Default target
|
|
all: $(SUBDIRS) $(TARGETS)
|
|
|
|
# Recurse into subdirs for same make goal
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
# Clean all targets recursively
|
|
clean: $(SUBDIRS)
|
|
rm -f $(TARGETS)
|
|
|
|
# Define go generate if not already defined
|
|
GO_GENERATE := go generate
|
|
|
|
# Run go generate for the targets
|
|
$(TARGETS): $(SOURCES)
|
|
$(GO_GENERATE) -x
|
|
|
|
.PHONY: all clean $(SUBDIRS)
|