Makefile 986 B

1234567891011121314151617181920212223
  1. fakemurk.sh: fakemurk.sh.post
  2. cat header.sh fakemurk.sh.post > $@
  3. chmod -w $@
  4. fakemurk.sh.post: fakemurk.sh.pre lib/ssd_util.sh.b64 crossystem.sh.b64 pollen.json.b64 pre-startup.conf.b64 cr50-update.conf.b64 fakemurk-daemon.sh.b64 chromeos_startup.sh.b64 mush.sh.b64 keymap.map.b64 logkeys.elf.b64 image_patcher.sh.b64
  5. cpp -P -E -traditional-cpp -o $@ < $<
  6. image_patcher.sh: image_patcher.sh.post
  7. cat header.sh image_patcher.sh.post > $@
  8. chmod -w $@
  9. image_patcher.sh.post: image_patcher.sh.pre crossystem_boot_populator.sh crossystem_boot_populator.sh.b64
  10. cpp -P -E -traditional-cpp -o $@ < $<
  11. crossystem_boot_populator.sh: crossystem_boot_populator.sh.post
  12. cat header.sh crossystem_boot_populator.sh.post > $@
  13. chmod -w $@
  14. crossystem_boot_populator.sh.post: crossystem_boot_populator.sh.pre
  15. cpp -P -E -traditional-cpp -o $@ < $<
  16. %.b64: %
  17. bzip2 -9c $< | base64 -w 100 > $@
  18. clean:
  19. chmod +w *.sh
  20. rm -f fakemurk.sh image_patcher.sh crossystem_boot_populator.sh *.post *.b64