14 lines
262 B
Makefile
14 lines
262 B
Makefile
BINARY_NAME=lambda.exe
|
|
|
|
it:
|
|
@ go build -o ${BINARY_NAME} ./cmd/lambda
|
|
@ chmod +x ${BINARY_NAME}
|
|
|
|
simple: it
|
|
@ ./lambda.exe - < ./samples/simple.txt
|
|
|
|
thunk: it
|
|
@ ./lambda.exe - < ./samples/thunk.txt
|
|
|
|
saccharine: it
|
|
@ ./lambda.exe - < ./samples/saccharine.txt
|