feat(stylus): Add Makefile for conversions

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2021-08-14 20:34:14 +02:00
parent 39c792fa8b
commit 16cff1fd7e
No known key found for this signature in database
GPG key ID: CD9628474574E0B6
2 changed files with 6 additions and 0 deletions

1
files/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
stylus-windows.json

5
files/Makefile Normal file
View file

@ -0,0 +1,5 @@
generate-stylus-for-windows:
cat stylus.json | perl -ne "s/Extended/Expanded/g; print;" | tee stylus-windows.json
generate-stylus-from-windows:
cat stylus-windows.json | perl -ne "s/Expanded/Extended/g; print;" | tee stylus.json