author | edouard |
Thu, 24 Sep 2009 10:16:09 +0200 | |
changeset 596 | cb69a65bb88d |
parent 454 | bc000083297a |
child 658 | 7758d60e9260 |
permissions | -rw-r--r-- |
0 | 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 |
CC = SUB_CC |
|
329 | 25 |
CXX = SUB_CXX |
26 |
LD = SUB_LD |
|
0 | 27 |
OPT_CFLAGS = -O2 |
28 |
CFLAGS = SUB_OPT_CFLAGS |
|
29 |
PROG_CFLAGS = SUB_PROG_CFLAGS |
|
30 |
EXE_CFLAGS = SUB_EXE_CFLAGS |
|
31 |
OS_NAME = SUB_OS_NAME |
|
32 |
ARCH_NAME = SUB_ARCH_NAME |
|
33 |
PREFIX = SUB_PREFIX |
|
34 |
TARGET = SUB_TARGET |
|
35 |
CAN_DRIVER = SUB_CAN_DRIVER |
|
36 |
TIMERS_DRIVER = SUB_TIMERS_DRIVER |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
37 |
TESTMASTERSLAVE = "TestMasterSlave" |
0 | 38 |
|
94
bdf4c86be6b2
Removed all non-supported and uncontrolled source code. Please refer to CVS version "Before_..." to see old code.
etisserant
parents:
91
diff
changeset
|
39 |
INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(CAN_DRIVER) -I../../include/$(TIMERS_DRIVER) |
0 | 40 |
|
41 |
MASTER_OBJS = TestSlave.o TestMaster.o TestMasterSlave.o Slave.o Master.o |
|
42 |
||
15
e930a0e817de
Re-orginized led and nvram related code, for generic target.
etisserant
parents:
3
diff
changeset
|
43 |
OBJS = $(MASTER_OBJS) ../../src/libcanfestival.a ../../drivers/$(TARGET)/libcanfestival_$(TARGET).a |
0 | 44 |
|
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
45 |
ifeq ($(TARGET),win32) |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
46 |
TESTMASTERSLAVE = "TestMasterSlave.exe" |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
47 |
endif |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
48 |
|
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
49 |
ifeq ($(TIMERS_DRIVER),timers_win32) |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
50 |
EXE_CFLAGS = |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
51 |
endif |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
52 |
|
0 | 53 |
ifeq ($(TIMERS_DRIVER),timers_xeno) |
54 |
PROGDEFINES = -DUSE_XENO |
|
55 |
endif |
|
56 |
||
454 | 57 |
ifeq ($(TIMERS_DRIVER),timers_rtai) |
58 |
PROGDEFINES = -DUSE_RTAI |
|
59 |
endif |
|
60 |
||
329 | 61 |
all: $(TESTMASTERSLAVE) |
0 | 62 |
|
63 |
../../drivers/$(TARGET)/libcanfestival_$(TARGET).a: |
|
64 |
$(MAKE) -C ../../drivers/$(TARGET) libcanfestival_$(TARGET).a |
|
65 |
||
66 |
||
329 | 67 |
$(TESTMASTERSLAVE): $(OBJS) |
68 |
$(LD) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ $(OBJS) $(EXE_CFLAGS) |
|
91
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
69 |
|
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
70 |
TestSlave.c: TestSlave.od |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
71 |
$(MAKE) -C ../../objdictgen gnosis |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
72 |
python ../../objdictgen/objdictgen.py TestSlave.od TestSlave.c |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
73 |
|
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
74 |
TestMaster.c: TestMaster.od |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
75 |
$(MAKE) -C ../../objdictgen gnosis |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
76 |
python ../../objdictgen/objdictgen.py TestMaster.od TestMaster.c |
0 | 77 |
|
78 |
%o: %c |
|
79 |
$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $< |
|
80 |
||
81 |
clean: |
|
91
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
82 |
rm -f $(MASTER_OBJS) |
267
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
83 |
rm -f $(TESTMASTERSLAVE) |
96c688ebcde7
Add win32 target (--can=win32) to compile with msys and mingw32
greg
parents:
158
diff
changeset
|
84 |
|
0 | 85 |
mrproper: clean |
91
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
86 |
rm -f TestSlave.c |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
87 |
rm -f TestMaster.c |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
40
diff
changeset
|
88 |
|
158
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
94
diff
changeset
|
89 |
install: TestMasterSlave |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
94
diff
changeset
|
90 |
mkdir -p $(PREFIX)/bin/ |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
94
diff
changeset
|
91 |
cp $< $(PREFIX)/bin/ |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
94
diff
changeset
|
92 |
|
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
94
diff
changeset
|
93 |
uninstall: |
b505f7116a1c
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
etisserant
parents:
94
diff
changeset
|
94 |
rm -f $(PREFIX)/bin/TestMasterSlave |
0 | 95 |
|
96 |
||
97 |