examples/Makefile.in
author etisserant
Tue, 15 Jan 2008 09:24:21 +0100
changeset 354 396ac66670ad
parent 329 7717252e3ed9
child 373 fc32e8a796ae
permissions -rw-r--r--
Various configure and build enhancements:
- Auto detect availability of wxWidgets, disable or enable examples build accordingly
- Enhacend (cross) toolchain detection and prefix. Now compile win32 target on linux host (--cc=i686-mingw32-gcc)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     1
#! gmake
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     2
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     3
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     4
# Copyright (C) 2006 Laurent Bessard
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     5
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     6
# This file is part of canfestival, a library implementing the canopen
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     7
# stack
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     8
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     9
# This library is free software; you can redistribute it and/or
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    10
# modify it under the terms of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    11
# License as published by the Free Software Foundation; either
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    12
# version 2.1 of the License, or (at your option) any later version.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    13
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    14
# This library is distributed in the hope that it will be useful,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    17
# Lesser General Public License for more details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    18
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    19
# You should have received a copy of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    20
# License along with this library; if not, write to the Free Software
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    21
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    22
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    23
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
TARGET = SUB_TARGET
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    25
WX = SUB_WX
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    26
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    27
ifeq ($(TARGET),win32)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    28
	BLD_TEST=1
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    29
endif
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    30
ifeq ($(TARGET),unix)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    31
	BLD_TEST=1
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    32
endif
166
b6fbc1c59a44 Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents: 158
diff changeset
    33
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    34
ifeq ($(WX),1)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    35
define build_command_seq_wx
329
7717252e3ed9 Changes to compile for win32
greg
parents: 308
diff changeset
    36
	$(MAKE) -C DS401_Master $@
7717252e3ed9 Changes to compile for win32
greg
parents: 308
diff changeset
    37
	$(MAKE) -C DS401_Slave_Gui $@
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    38
endef
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    39
endif
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    40
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    41
ifdef BLD_TEST
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    42
define build_command_seq
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    43
	$(MAKE) -C TestMasterSlave $@
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    44
	$(MAKE) -C TestMasterMicroMod $@
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    45
	$(build_command_seq_wx)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    46
endef
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    47
endif
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    48
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    49
ifeq ($(TARGET),hc12)
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    50
define build_command_seq
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    51
	$(MAKE) -C gene_SYNC_HCS12 $@
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    52
endef
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    53
endif
166
b6fbc1c59a44 Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents: 158
diff changeset
    54
b6fbc1c59a44 Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
etisserant
parents: 158
diff changeset
    55
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    56
all:
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    57
	$(build_command_seq)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    58
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    59
clean:
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    60
	$(build_command_seq)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    61
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    62
mrproper: clean
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    63
	$(build_command_seq)