]> rtime.felk.cvut.cz Git - sojka/can-utils.git/blob - Makefile
can-utils: AOSP build clean up
[sojka/can-utils.git] / Makefile
1 #
2 #  Copyright (c) 2002-2005 Volkswagen Group Electronic Research
3 #  All rights reserved.
4 #
5 #  Redistribution and use in source and binary forms, with or without
6 #  modification, are permitted provided that the following conditions
7 #  are met:
8 #  1. Redistributions of source code must retain the above copyright
9 #     notice, this list of conditions, the following disclaimer and
10 #     the referenced file 'COPYING'.
11 #  2. Redistributions in binary form must reproduce the above copyright
12 #     notice, this list of conditions and the following disclaimer in the
13 #     documentation and/or other materials provided with the distribution.
14 #  3. Neither the name of Volkswagen nor the names of its contributors
15 #     may be used to endorse or promote products derived from this software
16 #     without specific prior written permission.
17 #
18 #  Alternatively, provided that this notice is retained in full, this
19 #  software may be distributed under the terms of the GNU General
20 #  Public License ("GPL") version 2 as distributed in the 'COPYING'
21 #  file from the main directory of the linux kernel source.
22 #
23 #  The provided data structures and external interfaces from this code
24 #  are not restricted to be used by modules with a GPL compatible license.
25 #
26 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 #  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 #  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 #  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 #  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 #  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 #  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 #  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 #  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 #  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 #  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
37 #  DAMAGE.
38 #
39 #  Send feedback to <linux-can@vger.kernel.org>
40
41 DESTDIR =
42 PREFIX = /usr/local
43
44 MAKEFLAGS = -k
45
46 CFLAGS    = -O2 -Wall -Wno-parentheses -Iinclude \
47             -fno-strict-aliasing \
48             -DSO_RXQ_OVFL=40 \
49             -DPF_CAN=29 \
50             -DAF_CAN=PF_CAN
51
52 PROGRAMS_ISOTP = isotpdump isotprecv isotpsend isotpsniffer isotptun isotpserver
53 PROGRAMS_CANGW = cangw
54 PROGRAMS_SLCAN = slcan_attach slcand
55 PROGRAMS = can-calc-bit-timing candump cansniffer cansend canplayer cangen canbusload\
56            log2long log2asc asc2log\
57            canlogserver bcmserver\
58            $(PROGRAMS_ISOTP)\
59            $(PROGRAMS_CANGW)\
60            $(PROGRAMS_SLCAN)\
61            slcanpty canfdtest
62
63 all: $(PROGRAMS)
64
65 clean:
66         rm -f $(PROGRAMS) *.o
67
68 install:
69         mkdir -p $(DESTDIR)$(PREFIX)/bin
70         cp -f $(PROGRAMS) $(DESTDIR)$(PREFIX)/bin
71
72 distclean:
73         rm -f $(PROGRAMS) *.o *~
74
75 cansend.o:      lib.h
76 cangen.o:       lib.h
77 candump.o:      lib.h
78 canplayer.o:    lib.h
79 canlogserver.o: lib.h
80 canbusload.o:   lib.h
81 log2long.o:     lib.h
82 log2asc.o:      lib.h
83 asc2log.o:      lib.h
84
85 cansend:        cansend.o       lib.o
86 cangen:         cangen.o        lib.o
87 candump:        candump.o       lib.o
88 canplayer:      canplayer.o     lib.o
89 canlogserver:   canlogserver.o  lib.o
90 log2long:       log2long.o      lib.o
91 log2asc:        log2asc.o       lib.o
92 asc2log:        asc2log.o       lib.o