11 lines
197 B
Makefile
11 lines
197 B
Makefile
BINARY_NAME=lambda.exe
|
|
|
|
it:
|
|
@ go build -o ${BINARY_NAME} ./cmd/lambda
|
|
@ chmod +x ${BINARY_NAME}
|
|
|
|
ex: it
|
|
@ ./lambda.exe - < ./samples/simple.txt
|
|
|
|
v: it
|
|
@ ./lambda.exe -v - < ./samples/simple.txt
|