]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - examples/Makefile.in
Remover SillySlave from LSS build
[CanFestival-3.git] / examples / 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 TIMERS = SUB_TIMERS_DRIVER
26 WX = SUB_WX
27 ENABLE_LSS = SUB_ENABLE_LSS
28
29 ifeq ($(TARGET),win32)
30         BLD_TEST=1
31 endif
32 ifeq ($(TARGET),unix)
33         BLD_TEST=1
34 endif
35
36 ifeq ($(WX),1)
37 define build_command_seq_wx
38         $(MAKE) -C DS401_Master $@
39         $(MAKE) -C DS401_Slave_Gui $@
40 endef
41 endif
42
43 ifdef BLD_TEST
44 ifeq ($(ENABLE_LSS),1)
45 define build_command_seq
46         $(MAKE) -C TestMasterSlave $@
47         $(MAKE) -C TestMasterSlaveLSS $@
48         $(MAKE) -C TestMasterMicroMod $@
49         $(build_command_seq_wx)
50 endef
51 else
52 define build_command_seq
53         $(MAKE) -C TestMasterSlave $@
54         $(MAKE) -C TestMasterMicroMod $@
55         $(build_command_seq_wx)
56 endef
57 endif
58 endif
59
60 ifeq ($(TARGET),hc12)
61 define build_command_seq
62         $(MAKE) -C gene_SYNC_HCS12 $@
63 endef
64 endif
65
66 ifeq ($(TIMERS),timers_kernel)
67 define build_command_seq
68         $(MAKE) -C kerneltest $@
69 endef
70 endif
71
72
73 all:
74         $(build_command_seq)
75
76 clean:
77         $(build_command_seq)
78
79 install:
80         $(build_command_seq)
81
82 uninstall:
83         $(build_command_seq)
84
85 mrproper: clean
86         $(build_command_seq)