2014-08-05 16:40:51 +01:00
|
|
|
# Copyright (c) 2014 Cesanta Software
|
|
|
|
# All rights reserved
|
|
|
|
|
2014-10-10 13:58:45 +01:00
|
|
|
SUBDIRS = $(sort $(filter-out csharp/, $(dir $(wildcard */))))
|
|
|
|
X = $(SUBDIRS)
|
2015-01-10 16:41:58 +08:00
|
|
|
ifdef WINDIR
|
|
|
|
# appending the Winsock2 library at the end of the compiler
|
|
|
|
# invocation
|
|
|
|
CFLAGS_EXTRA += -lws2_32
|
|
|
|
endif
|
2010-05-03 21:46:42 +01:00
|
|
|
|
2014-10-10 13:58:45 +01:00
|
|
|
.PHONY: $(SUBDIRS)
|
2012-09-24 21:25:06 +01:00
|
|
|
|
2014-10-10 13:58:45 +01:00
|
|
|
all: $(SUBDIRS)
|
2012-09-24 21:25:06 +01:00
|
|
|
|
2014-10-10 13:58:45 +01:00
|
|
|
$(SUBDIRS):
|
2015-01-10 16:41:58 +08:00
|
|
|
@$(MAKE) CFLAGS_EXTRA="$(CFLAGS_EXTRA)" -C $@
|
2014-02-20 12:13:59 +00:00
|
|
|
|
2012-10-14 15:00:04 +01:00
|
|
|
clean:
|
2015-01-10 16:41:58 +08:00
|
|
|
for d in $(SUBDIRS) ; do $(MAKE) -C $$d clean ; done
|