S_New4/MakeFile

11 lines
119 B
Plaintext
Raw Permalink Normal View History

2019-09-02 12:41:27 +00:00
CC=g++
LIBS=-lcurl -lpthread
S_New4: *.h *.cpp
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
.PHONY: clean
clean:
rm -f S_New4