8 lines
78 B
Makefile
8 lines
78 B
Makefile
|
TARGET=site
|
||
|
|
||
|
all: site.hs
|
||
|
ghc $< -o ${TARGET}
|
||
|
|
||
|
build: all
|
||
|
./${TARGET} build
|