wut/Makefile
2016-07-06 20:21:55 +01:00

38 lines
663 B
Makefile

ifeq ($(shell uname -o),Cygwin)
WUT_ROOT := $(shell cygpath -w ${CURDIR})
else
WUT_ROOT := $(CURDIR)
endif
TARGETS := crt rpl tools
export WUT_ROOT
all:
@for dir in $(TARGETS); do \
echo; \
echo "Entering Directory $$dir"; \
$(MAKE) --no-print-directory -C $$dir; \
echo "Leaving Directory $$dir"; \
done
clean:
@rm -rf lib
@rm -rf bin
@for dir in $(TARGETS); do \
echo; \
echo Cleaning $$dir; \
$(MAKE) --no-print-directory -C $$dir clean; \
done
install:
@mkdir -p bin
@mkdir -p lib
@for dir in $(TARGETS); do \
echo; \
echo Installing $$dir; \
$(MAKE) --no-print-directory -C $$dir install; \
done
.PHONY: all clean install