17 lines
344 B
Makefile
17 lines
344 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
|
|
|
|
saccharineX: it
|
|
@ ./lambda.exe -x - < ./samples/saccharine.txt > saccharine.out
|