include $(APPDIR)/Make.defs
WD := ${shell echo $(CURDIR) | sed -e 's/ /\\ /g'}
CONFIG_TESTING_UNITY_URL ?= "https://github.com/ThrowTheSwitch/Unity/archive"
CONFIG_TESTING_UNITY_VERSION ?= "2.5.2"
UNITY_VERSION = $(patsubst "%",%,$(strip $(CONFIG_TESTING_UNITY_VERSION)))
UNITY_TARBALL = v$(UNITY_VERSION).tar.gz
UNITY_UNPACKNAME = Unity
UNPACK ?= tar -zxf
UNITY_UNPACKDIR = $(WD)/$(UNITY_UNPACKNAME)
UNITY_SRCDIR = $(UNITY_UNPACKNAME)$(DELIM)src
APPS_INCDIR = $(APPDIR)$(DELIM)include$(DELIM)testing
CFLAGS += ${INCDIR_PREFIX}$(APPS_INCDIR)
CFLAGS += -DUNITY_INCLUDE_CONFIG_H
CFLAGS += -DUNITY_INCLUDE_DOUBLE
CSRCS = $(UNITY_SRCDIR)$(DELIM)unity.c
ifeq ($(wildcard $(UNITY_UNPACKNAME)/.git),)
$(UNITY_TARBALL):
@echo "Downloading: $(UNITY_TARBALL)"
$(Q) curl -L -O $(CONFIG_TESTING_UNITY_URL)/$(UNITY_TARBALL)
$(UNITY_UNPACKNAME): $(UNITY_TARBALL)
@echo "Unpacking: $(UNITY_TARBALL) -> $(UNITY_UNPACKNAME)"
$(Q) $(UNPACK) $(UNITY_TARBALL)
$(Q) mv Unity-$(UNITY_VERSION) $(UNITY_UNPACKNAME)
$(Q) touch $(UNITY_UNPACKNAME)
endif
$(UNITY_SRCDIR)$(DELIM)unity.h: $(UNITY_UNPACKNAME)
$(UNITY_SRCDIR)$(DELIM)unity_internals.h: $(UNITY_UNPACKNAME)
$(APPS_INCDIR)$(DELIM)unity.h: $(UNITY_SRCDIR)$(DELIM)unity.h
$(Q) cp $< $@
$(APPS_INCDIR)$(DELIM)unity_internals.h: $(UNITY_SRCDIR)$(DELIM)unity_internals.h
$(Q) cp $< $@
context:: $(APPS_INCDIR)$(DELIM)unity.h $(APPS_INCDIR)$(DELIM)unity_internals.h
distclean::
ifeq ($(wildcard $(UNITY_UNPACKNAME)/.git),)
$(call DELDIR, $(UNITY_UNPACKNAME))
$(call DELFILE, $(UNITY_TARBALL))
endif
$(call DELFILE, $(APPDIR)/include/testing/unity.h)
$(call DELFILE, $(APPDIR)/include/testing/unity_internals.h)
include $(APPDIR)/Application.mk