Files
seer/tests/hellocurl/Makefile
T
2023-07-27 09:10:55 -05:00

11 lines
147 B
Makefile

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