forked from markus/S_New4
11 lines
119 B
Plaintext
11 lines
119 B
Plaintext
CC=g++
|
|
LIBS=-lcurl -lpthread
|
|
|
|
S_New4: *.h *.cpp
|
|
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm -f S_New4
|