X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/47652e8d16ce55b49ea5435b1216b002cbc366a9..2827b727d2910a3b48f9de7d67b3a67f59e256c7:/lincan/Makefile diff --git a/lincan/Makefile b/lincan/Makefile index d643545..f595272 100644 --- a/lincan/Makefile +++ b/lincan/Makefile @@ -1,46 +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 -SUBDIRS = src utils - -ifndef SOURCES_DIR -SOURCES_DIR := $(shell ( pwd -L ) ) +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 -ifneq ($(wildcard $(SOURCES_DIR)/Standalone.mk),) -# Standalone make outside of OCERA framework - -all: default - -.PHONY: dep default subdirs clean cleandepend -.PHONY: check-dir include-pass library-pass binary-pass utils-pass kernel-lib-pass kernel-pass - -dirs = src utils - -default dep clean install utils-pass kernel-pass: - $(foreach dir, $(dirs), $(MAKE) -C $(SOURCES_DIR)/$(dir) \ - SOURCES_DIR=$(SOURCES_DIR)/$(dir) $@ ; ) - -else -# Build in structure of OCERA framework - -TOPDIR = $(LINUX_DIR) - -ifneq ($(wildcard ../../../../ocera.mk),) -include ../../../../ocera.mk -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" -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