Makefile 430 B

123456789101112131415161718192021222324
  1. #Stephen Stengel <stephen.stengel@cwu.edu> 40819903
  2. #makefile for Project 2
  3. #Don't need to compile anything for this
  4. #Miscellaneous
  5. .PHONY: clean
  6. clean:
  7. rm -f 565-project2-stephen-stengel.zip
  8. .PHONY: backup
  9. backup:
  10. ssh-backup-pi | lolcat
  11. .PHONY: zip
  12. zip:
  13. 7z a -mx=9 565-project2-stephen-stengel.zip Makefile \
  14. gold-getter.py README LICENSE images/
  15. .PHONY: script
  16. script:
  17. make clean && make && make zip && make backup