mongoose/examples/http_client/Makefile

13 lines
291 B
Makefile
Raw Normal View History

2014-08-06 00:14:41 +08:00
# Copyright (c) 2014 Cesanta Software
# All rights reserved
PROG = http_client
2014-10-14 18:05:12 +08:00
CFLAGS = -W -Wall -I../.. -pthread -g -O0 $(CFLAGS_EXTRA)
SOURCES = $(PROG).c ../../mongoose.c
2014-08-06 00:14:41 +08:00
unix: $(SOURCES)
$(CC) -o $(PROG) $(SOURCES) $(CFLAGS)
clean:
rm -rf $(PROG) *.exe *.dSYM *.obj *.exp *.o *.lib