CC=g++
LIBS=-lcurl -lpthread

S_New4: *.h *.cpp
	$(CC) -o $@ $^ $(CFLAGS) $(LIBS)

.PHONY: clean

clean:
	rm -f S_New4