examples/Makefile.in
author Edouard Tisserant
Thu, 24 Jan 2019 13:53:01 +0100
changeset 808 de1fc3261f21
parent 555 ee24dcbd3e64
permissions -rw-r--r--
Adding -fPIC isn't necessary of xeno-config is set correctly. Backed out changeset b9f1fcda7d30
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
391
7802a7d5584f Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents: 381
diff changeset
    25
TIMERS = SUB_TIMERS_DRIVER
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    26
WX = SUB_WX
381
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    27
ENABLE_LSS = SUB_ENABLE_LSS
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    28
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    29
ifeq ($(TARGET),win32)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    30
	BLD_TEST=1
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    31
endif
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    32
ifeq ($(TARGET),unix)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    33
	BLD_TEST=1
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    34
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
    35
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    36
ifeq ($(WX),1)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    37
define build_command_seq_wx
329
7717252e3ed9 Changes to compile for win32
greg
parents: 308
diff changeset
    38
	$(MAKE) -C DS401_Master $@
7717252e3ed9 Changes to compile for win32
greg
parents: 308
diff changeset
    39
	$(MAKE) -C DS401_Slave_Gui $@
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    40
endef
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    41
endif
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    43
ifdef BLD_TEST
381
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    44
ifeq ($(ENABLE_LSS),1)
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    45
define build_command_seq
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    46
	$(MAKE) -C TestMasterSlave $@
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    47
	$(MAKE) -C TestMasterSlaveLSS $@
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    48
	$(MAKE) -C TestMasterMicroMod $@
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    49
	$(build_command_seq_wx)
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    50
endef
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    51
else
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    52
define build_command_seq
555
ee24dcbd3e64 Add new example : CANOpen shell
greg
parents: 518
diff changeset
    53
	$(MAKE) -C CANOpenShell $@
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    54
	$(MAKE) -C TestMasterSlave $@
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    55
	$(MAKE) -C TestMasterMicroMod $@
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    56
	$(build_command_seq_wx)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    57
endef
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    58
endif
381
854c43cdc24a added TestMasterSlaveLSS. LSS protocol revised.
groke6
parents: 373
diff changeset
    59
endif
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    60
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    61
ifeq ($(TARGET),hc12)
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    62
define build_command_seq
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    63
	$(MAKE) -C gene_SYNC_HCS12 $@
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    64
endef
267
96c688ebcde7 Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents: 248
diff changeset
    65
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
    66
391
7802a7d5584f Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents: 381
diff changeset
    67
ifeq ($(TIMERS),timers_kernel)
7802a7d5584f Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents: 381
diff changeset
    68
define build_command_seq
7802a7d5584f Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents: 381
diff changeset
    69
	$(MAKE) -C kerneltest $@
7802a7d5584f Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents: 381
diff changeset
    70
endef
7802a7d5584f Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents: 381
diff changeset
    71
endif
7802a7d5584f Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents: 381
diff changeset
    72
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
    73
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    74
all:
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    75
	$(build_command_seq)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    76
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    77
clean:
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    78
	$(build_command_seq)
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    79
373
fc32e8a796ae fix install target in example Makefile.in
greg
parents: 354
diff changeset
    80
install:
fc32e8a796ae fix install target in example Makefile.in
greg
parents: 354
diff changeset
    81
	$(build_command_seq)
fc32e8a796ae fix install target in example Makefile.in
greg
parents: 354
diff changeset
    82
416
9ef58fa2c66a fixed missing uninstall target in examples makefile
greg
parents: 400
diff changeset
    83
uninstall:
9ef58fa2c66a fixed missing uninstall target in examples makefile
greg
parents: 400
diff changeset
    84
	$(build_command_seq)
9ef58fa2c66a fixed missing uninstall target in examples makefile
greg
parents: 400
diff changeset
    85
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    86
mrproper: clean
354
396ac66670ad Various configure and build enhancements:
etisserant
parents: 329
diff changeset
    87
	$(build_command_seq)