diff --git a/frontend/Makefile b/frontend/Makefile new file mode 100644 index 0000000..91b3e10 --- /dev/null +++ b/frontend/Makefile @@ -0,0 +1,9 @@ +DESTINATION = /srv/http/quotes/quotes +BUILD_FLAGS = --prod --build-optimizer + +.PHONY: all quotes + +all: quotes + +quotes: + ng build $(BUILD_FLAGS) --output-path $(DESTINATION)