haskell-scratch/example/Makefile

17 lines
231 B
Makefile
Raw Permalink Normal View History

2015-04-24 04:28:47 +02:00
default: run
hello:
@ghc hello.hs
@strip hello
image: | hello
@docker build -t haskell-scratch:hello .
run: | image
@docker run --rm --name hello -i -t haskell-scratch:hello
clean:
@rm -rf hello
.PHONY: default image run