summaryrefslogblamecommitdiffstats
path: root/Makefile
blob: 56b2d205c622f37e5b6b856bbda2253773db9446 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                              
                                                            

                          
                                           
 
              
                              

    





                             
 
     
                               
            







                   



                        
# SPDX-License-Identifier: ISC
# Copyright © 2022 siddharth ravikumar <s@ricketyspace.net>

MOD=ricketyspace.net/peach
PKGS=${MOD}/client ${MOD}/nws ${MOD}/photon

peach: fix fmt
	go build ${BUILD_OPTS}

fmt:
	go fmt ${MOD} ${PKGS}
.PHONY: fmt

fix:
	go fix ${MOD} ${PKGS}
.PHONY: fix

test:
	go test ${PKGS} ${ARGS}
.PHONY: test

clean:
	go clean
.PHONY: clean

image:
	./bin/image
.PHONY: image

image-push:
	./bin/image-push
.PHONY: image-push