# Copyright (C) 2013-2015 Czech Technical University in Prague # # Authors: # - Michal Sojka # # This document contains proprietary information belonging to Czech # Technical University in Prague. Passing on and copying of this # document, and communication of its contents is not permitted # without prior written authorization. # # File : Makefile.rules.arm # # This file is meant to be included by other Makefiles to gain # "platform independent" compilation for RPP. ifeq ($(TARGET),) $(error "Makefile.config must be included before this file") endif makefile_rules_dir := $(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST)))) ifeq ($(TARGET),posix) include $(makefile_rules_dir)/Makefile.rules.posix else include $(makefile_rules_dir)/Makefile.rules.arm endif