]> rtime.felk.cvut.cz Git - lincan.git/blob - lincan/utils/Makefile
09ad3028a1d0de78ce7cb765662ab445b3290aa1
[lincan.git] / lincan / utils / 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
14 CFLAGS = -I../include -O2
15
16 all: default
17
18 default: utils
19
20 dep:
21         $(CC) $(CFLAGS) $(CPPFLAGS) -w -E -M *.c $(MORE_C_FILES) > .depend
22
23 install:
24         echo Nothing to install
25
26 utils: rxtx sendburst readburst send can-proxy
27
28 rxtx: rxtx.o
29
30 sendburst: sendburst.o
31
32 readburst: readburst.o
33
34 send: send.o
35
36 clean :
37         rm -f rxtx sendburst readburst send can-proxy *.o .depend
38
39 -include .depend
40