You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
289 B
11 lines
289 B
5 years ago
|
.PHONY: all client clean
|
||
|
|
||
|
all: clean client
|
||
|
|
||
|
client: client.c ../../http-parser/http_parser.c ../../http-parser/http_parser.h
|
||
|
@echo "Compiling httpclient"
|
||
|
@gcc -I../../http_parser/ ../../http-parser/http_parser.c client.c -g -o ../../bin/httpclient
|
||
|
|
||
|
clean:
|
||
|
@rm -f ../../bin/httpclient
|