learning-rust

mrgrouse's git repo for their failing to learn rust
Log | Files | Refs

Makefile (121B)


      1 # Mrgrouse's makefile!
      2 all: bin
      3 
      4 clean:
      5 	rm -f bin
      6 
      7 bin: main.rs
      8 	rustc main.rs -o bin
      9 	[ -z $(which upx) ] && upx bin;
     10