Skip to content

Instantly share code, notes, and snippets.

@wires
Created April 14, 2017 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wires/f842782a4cc310154807f7743438ac4e to your computer and use it in GitHub Desktop.
Save wires/f842782a4cc310154807f7743438ac4e to your computer and use it in GitHub Desktop.
Purescript build tool
# bower and pulp and purescript 0.11, break all my stuff
.PHONY = all run clean build
DEPS=$(shell find bower_components -type f -iname "*.purs")
all: build
install:
bower install
build:
purs compile $(DEPS) src/Main.purs
clean:
rm -rf output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment