mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-04 01:39:01 +08:00
df311203dc
PUBLISHED_FROM=46800f43ba03082cc589d70e6118d754f4cdc9d0
19 lines
345 B
Makefile
19 lines
345 B
Makefile
# 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
|
|
|
|
.PHONY: $(SUBDIRS)
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
@$(MAKE) -C $@
|
|
|
|
clean:
|
|
for d in $(SUBDIRS) ; do $(MAKE) -C $$d clean ; done
|