mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 19:19:00 +08:00
376d2666a5
PUBLISHED_FROM=cda885a9dc5d1203b7b59b13ea7fd7934b31260a
21 lines
580 B
Makefile
21 lines
580 B
Makefile
# Copyright (c) 2014 Cesanta Software
|
|
# All rights reserved
|
|
|
|
# `wildcard ./*/` works in both linux and linux/wine, while `wildcard */` enumerates nothing under wine
|
|
SUBDIRS = $(sort $(dir $(wildcard ./*/)))
|
|
SUBDIRS:=$(filter-out ./ ./CC3200/ ./ESP8266_RTOS/ ./MSP432/ ./PIC32/ ./STM32F4_CC3100/, $(SUBDIRS))
|
|
|
|
ifeq ($(OS), Windows_NT)
|
|
SUBDIRS:=$(filter-out ./load_balancer/ ./netcat/ ./raspberry_pi_mjpeg_led/ ./captive_dns_server/, $(SUBDIRS))
|
|
endif
|
|
|
|
.PHONY: $(SUBDIRS)
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
@$(MAKE) -C $@
|
|
|
|
clean:
|
|
for d in $(SUBDIRS) ; do $(MAKE) -C $$d clean ; done
|