X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/3e5b474f9cd113def3be02af0cf6d5401a7427c9..1d20caee804d28a792dcacbf8424dc23b80c6370:/lincan/Makefile diff --git a/lincan/Makefile b/lincan/Makefile index 87f2000..f595272 100644 --- a/lincan/Makefile +++ b/lincan/Makefile @@ -1,50 +1,14 @@ -# -# Makefile for the Linux CAN-bus driver. -# Written by Arnaud Westenberg email:arnaud@wanadoo.nl -# This software is released under the GPL-License. -# Version 0.7 6 Aug 2001 -# -# Changes made by Pavel Pisa pisa@cmp.felk.cvut.cz as preliminary -# study for OCERA Real Time CAN/CANOpen project ORTCAN -# -########## The following options can be changed ########## +# Generic directory or leaf node makefile for OCERA make framework - -ifneq ($(wildcard ./Standalone.mk),) -# Standalone make outside of OCERA framework - -SUBDIRS = src utils - -all: default - -.PHONY: dep default subdirs clean cleandepend - -dirs = src utils - -default dep clean install: - $(foreach dir, $(dirs), $(MAKE) -C $(dir) $@ ; ) - -else -# Build in structure of OCERA framework - -TOPDIR = $(LINUX_DIR) -COMPONENT = CONFIG_OC_LINCAN -COMPONENT_NAME = lincan -COMPONENT_TARGETS = default - -ifneq ($(wildcard ../../../../ocera.mk),) -include ../../../../ocera.mk - -dirs = src utils - -default dep clean install: - $(foreach dir, $(dirs), $(MAKE) -C $(dir) $@ ; ) - -else -all: - @echo -e "\nTo build LinCAN driver for OCERA framework, ocera.mk file have" - @echo -e "to be generated first. Go to ocera/ directory and do 'make', please." - @echo -e "If standalone build is required, mark lincan/ by 'touch ./Standalone.mk'.\n" +ifndef MAKERULES_DIR +MAKERULES_DIR := $(shell ( old_pwd="" ; while [ ! -e Makefile.rules ] ; do if [ "$$old_pwd" == `pwd` ] ; then exit 1 ; else old_pwd=`pwd` ; cd -L .. 2>/dev/null ; fi ; done ; pwd ) ) endif + +ifeq ($(MAKERULES_DIR),) +all : default +.DEFAULT:: + @echo -e "\nThe Makefile.rules has not been found in this or partent directory\n" +else +include $(MAKERULES_DIR)/Makefile.rules endif