diff options
| author | Teddy Wing | 2019-05-01 17:31:25 +0200 |
|---|---|---|
| committer | Teddy Wing | 2019-05-01 17:31:44 +0200 |
| commit | bd0829555bcaee8f0e32d54c5785651965a5b1e4 (patch) | |
| tree | 17a3d442f14d480d02e929e5e540feec6236ec1a | |
| parent | 46ed2319819f5037444a4c8a4098d3558717928e (diff) | |
| download | muttagen-bd0829555bcaee8f0e32d54c5785651965a5b1e4.tar.bz2 | |
Add Makefile
Formalise build recipe.
| -rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..43371f3 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +all: build/muttagen.user.js + +build/%.js: src/%.ts + tsc + +build/muttagen.user.js: build/index.js + browserify $^ -o $@ |
