mongoose/examples/Makefile

19 lines
345 B
Makefile
Raw Normal View History

2014-08-05 23:40:51 +08:00
# Copyright (c) 2014 Cesanta Software
# All rights reserved
SUBDIRS = $(sort $(dir $(wildcard */)))
ifeq ($(OS), Windows_NT)
SUBDIRS:=$(filter-out load_balancer/ netcat/ raspberry_pi_mjpeg_led/, $(SUBDIRS))
endif
2014-10-10 20:58:45 +08:00
.PHONY: $(SUBDIRS)
2012-09-25 04:25:06 +08:00
2014-10-10 20:58:45 +08:00
all: $(SUBDIRS)
2012-09-25 04:25:06 +08:00
2014-10-10 20:58:45 +08:00
$(SUBDIRS):
@$(MAKE) -C $@
2014-02-20 20:13:59 +08:00
2012-10-14 22:00:04 +08:00
clean:
for d in $(SUBDIRS) ; do $(MAKE) -C $$d clean ; done