# ! /usr/bin/make # # Makefile for goa chat # # Targets: # - clean delete all generated files # - generate (re)generate all goagen-generated files. # - build compile executable # # Meta targets: # - all is the default target, it runs all the targets in the order above. # all: clean generate build clean: @rm -rf app @rm -rf client @rm -rf tool @rm -rf public/swagger @rm -rf public/schema @rm -rf pu

