github.com/matrixorigin/matrixone@v1.2.0/pkg/sql/parsers/Makefile (about)

     1  .PHONY: all
     2  all: mysql postgresql
     3  
     4  .PHONY: mysql
     5  mysql:
     6  	@cd dialect/mysql && make
     7  
     8  .PHONY: postgresql
     9  postgresql:
    10  	@cd dialect/postgresql && make
    11  
    12  .PHONY: clean
    13  clean: 
    14  	@cd dialect/mysql && make clean
    15  	@cd dialect/postgresql && make clean