Skip to content

Commit

Permalink
Add a Makefile (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptomilk authored and Hypfer committed Apr 8, 2019
1 parent 3a3a906 commit 6b3bf38
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@

# IntelliJ Idea project files
/.idea/

# npm package lock file
/package-lock.json
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
PATH := node_modules/.bin:$(PATH)
SHELL := /bin/bash
PKG ?= pkg

.PHONY: all clean

all:
$(PKG) --targets node8-linux-armv7 --no-bytecode --options max-old-space-size=72 --public-packages=exif-parser,omggif,trim,prettycron .

clean:
rm -f valetudo

0 comments on commit 6b3bf38

Please sign in to comment.