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



                          
                              

    
                                                            
 
     
                                                              
            







                   



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

MOD=ricketyspace.net/peach

peach: fmt
	go build ${BUILD_OPTS}

fmt:
	go fmt ${MOD} ${MOD}/client ${MOD}/nws ${MOD}/photon

test:
	go test ${MOD}/client ${MOD}/nws ${MOD}/photon ${ARGS}
.PHONY: test

clean:
	go clean
.PHONY: clean

image:
	./bin/image
.PHONY: image

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