This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
agario-webclient/Makefile

10 lines
112 B
Makefile
Raw Normal View History

FLAGS=''
main: out.js
debug: FLAGS += --debug
debug: out.js
out.js: script.js
browserify $< -o $@ $(FLAGS)