]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - drivers/Makefile.in
Re-orginized led and nvram related code, for generic target.
[CanFestival-3.git] / drivers / Makefile.in
1 #! gmake
2
3 #
4 # Copyright (C) 2006 Laurent Bessard
5
6 # This file is part of canfestival, a library implementing the canopen
7 # stack
8
9 # This library is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public
11 # License as published by the Free Software Foundation; either
12 # version 2.1 of the License, or (at your option) any later version.
13
14 # This library is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # Lesser General Public License for more details.
18
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with this library; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22
23
24 TARGET = SUB_TARGET
25 CAN_DRIVER = SUB_CAN_DRIVER
26 TIMERS_DRIVER = SUB_TIMERS_DRIVER
27 LED_DRIVER = SUB_LED_DRIVER
28 NVRAM_DRIVER = SUB_NVRAM_DRIVER
29
30 all: driver
31
32 driver:
33 ifneq ($(LED_DRIVER),led_)
34         $(MAKE) -C $(LED_DRIVER) $@
35 endif
36
37 ifneq ($(NVRAM_DRIVER),nvram_)
38         $(MAKE) -C $(NVRAM_DRIVER) $@
39 endif
40
41 ifneq ($(TIMERS_DRIVER),timers_)
42         $(MAKE) -C $(TIMERS_DRIVER) $@
43 endif
44
45 ifneq ($(CAN_DRIVER),can_)
46         $(MAKE) -C $(CAN_DRIVER) $@
47 endif
48         $(MAKE) -C $(TARGET) $@
49
50 install:
51 ifneq ($(LED_DRIVER),led_)
52         $(MAKE) -C $(LED_DRIVER) $@
53 endif
54
55 ifneq ($(NVRAM_DRIVER),nvram_)
56         $(MAKE) -C $(NVRAM_DRIVER) $@
57 endif
58
59 ifneq ($(TIMERS_DRIVER),timers_)
60         $(MAKE) -C $(TIMERS_DRIVER) $@
61 endif
62
63 ifneq ($(CAN_DRIVER),can_)
64         $(MAKE) -C $(CAN_DRIVER) $@
65 endif
66         $(MAKE) -C $(TARGET) $@
67
68 uninstall:
69 ifneq ($(LED_DRIVER),led_)
70         $(MAKE) -C $(LED_DRIVER) $@
71 endif
72
73 ifneq ($(NVRAM_DRIVER),nvram_)
74         $(MAKE) -C $(NVRAM_DRIVER) $@
75 endif
76
77 ifneq ($(TIMERS_DRIVER),timers_)
78         $(MAKE) -C $(TIMERS_DRIVER) $@
79 endif
80
81 ifneq ($(CAN_DRIVER),can_)
82         $(MAKE) -C $(CAN_DRIVER) $@
83 endif
84         $(MAKE) -C $(TARGET) $@
85
86 clean:
87 ifneq ($(LED_DRIVER),led_)
88         $(MAKE) -C $(LED_DRIVER) $@
89 endif
90
91 ifneq ($(NVRAM_DRIVER),nvram_)
92         $(MAKE) -C $(NVRAM_DRIVER) $@
93 endif
94
95 ifneq ($(TIMERS_DRIVER),timers_)
96         $(MAKE) -C $(TIMERS_DRIVER) $@
97 endif
98
99 ifneq ($(CAN_DRIVER),can_)
100         $(MAKE) -C $(CAN_DRIVER) $@
101 endif
102         $(MAKE) -C $(TARGET) $@
103
104 mrproper: clean
105 ifneq ($(LED_DRIVER),led_)
106         $(MAKE) -C $(LED_DRIVER) $@
107 endif
108
109 ifneq ($(NVRAM_DRIVER),nvram_)
110         $(MAKE) -C $(NVRAM_DRIVER) $@
111 endif
112
113 ifneq ($(TIMERS_DRIVER),timers_)
114         $(MAKE) -C $(TIMERS_DRIVER) $@
115 endif
116
117 ifneq ($(CAN_DRIVER),can_)
118         $(MAKE) -C $(CAN_DRIVER) $@
119 endif
120         $(MAKE) -C $(TARGET) $@
121
122