]> rtime.felk.cvut.cz Git - lincan.git/blobdiff - lincan/Makefile
Added support for fasync system call and replacement of spinXXX by can_spinXXX
[lincan.git] / lincan / Makefile
index 28722b9fcbe55aef5ecfd5ed033dff175238a621..87f2000ad8468a0b0ff1449c34f2294ba7b53e98 100644 (file)
@@ -1,3 +1,4 @@
+#
 # Makefile for the Linux CAN-bus driver.
 # Written by Arnaud Westenberg email:arnaud@wanadoo.nl
 # This software is released under the GPL-License.
@@ -8,10 +9,11 @@
 #
 ########## The following options can be changed ##########
 
-# Compiler
-CC = gcc
-# Enable debugging messages
-DEBUG = y 
+
+ifneq ($(wildcard ./Standalone.mk),)
+# Standalone make outside of OCERA framework
+
+SUBDIRS = src utils
 
 all: default
 
@@ -21,3 +23,28 @@ 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"
+endif
+endif
+