mirror of
https://github.com/number571/go-peer.git
synced 2026-09-12 19:50:00 +05:00
7 lines
223 B
Makefile
7 lines
223 B
Makefile
.PHONY: default remove-std clean
|
|
default: clean
|
|
clean:
|
|
ls | grep -xv ".gitignore" | grep -xv "Makefile" | xargs rm | true
|
|
remove-std:
|
|
ls | grep -xv ".gitignore" | grep -xv "Makefile" | grep -xv -E ".*_.*_.*" | xargs rm
|