Files
seer/tests/hellolambda/Makefile
T
2023-05-06 20:28:30 -05:00

11 lines
154 B
Makefile

.PHONY: all
all: hellolambda
hellolambda: hellolambda.cpp
g++ -g -o hellolambda hellolambda.cpp
.PHONY: clean
clean:
rm -f hellolambda hellolambda.o