]> rtime.felk.cvut.cz Git - lincan.git/blob - lincan/Makefile
The first enhanced version of Linux CAN-bus driver for OCERA project
[lincan.git] / lincan / Makefile
1 # Makefile for the Linux CAN-bus driver.
2 # Written by Arnaud Westenberg email:arnaud@wanadoo.nl
3 # This software is released under the GPL-License.
4 # Version 0.7  6 Aug 2001
5 #
6 # Changes made by Pavel Pisa pisa@cmp.felk.cvut.cz as preliminary
7 # study for OCERA Real Time CAN/CANOpen project ORTCAN
8 #
9 ########## The following options can be changed ##########
10
11 # Compiler
12 CC = gcc
13 # Enable debugging messages
14 DEBUG = y 
15
16 all: default
17
18 .PHONY: dep default subdirs clean cleandepend
19
20 dirs = src utils
21
22 default dep clean install:
23         $(foreach dir, $(dirs), $(MAKE) -C $(dir) $@ ; )