Files
seer/tests/hellocurl/Makefile
T

11 lines
147 B
Makefile
Raw Normal View History

2023-07-27 09:10:55 -05:00
.PHONY: all
all: hellocurl
hellocurl: hellocurl.cpp
g++ -g -o hellocurl -lcurl hellocurl.cpp
.PHONY: clean
clean:
rm -f hellocurl hellocurl.o