# 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 ########## # Compiler CC = gcc # Enable debugging messages DEBUG = y all: default .PHONY: dep default subdirs clean cleandepend dirs = src utils default dep clean install: $(foreach dir, $(dirs), $(MAKE) -C $(dir) $@ ; )