From: Carl Worth Date: Mon, 25 May 2020 10:46:08 +0000 (-0700) Subject: Extend Makefile with "deps", "dev", and "prod" targets X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=7df3bbda08d2305fc9149db3adc007bfd1d4bbf5;hp=7df3bbda08d2305fc9149db3adc007bfd1d4bbf5 Extend Makefile with "deps", "dev", and "prod" targets The "make deps" target downloads 3rd-party JavaScript resources that are used by the site, (currently React and React-Dom). The "make dev" installs the development versions locally while "made prod" installs the production versions. All three targets verify the integrity of the downloaded files via SHA512 sums that are added in this commit. And all three targets are documented in the README file added in this commit. ---