author | etisserant |
Thu, 10 Aug 2006 17:38:53 +0200 | |
changeset 45 | 45885c4e3e56 |
parent 40 | ddeeb217ed71 |
child 91 | ed2612282988 |
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 |
|
25 |
OPT_CFLAGS = -O2 |
|
26 |
CFLAGS = SUB_OPT_CFLAGS |
|
27 |
PROG_CFLAGS = SUB_PROG_CFLAGS |
|
28 |
EXE_CFLAGS = SUB_EXE_CFLAGS |
|
29 |
OS_NAME = SUB_OS_NAME |
|
30 |
ARCH_NAME = SUB_ARCH_NAME |
|
31 |
PREFIX = SUB_PREFIX |
|
32 |
TARGET = SUB_TARGET |
|
33 |
CAN_DRIVER = SUB_CAN_DRIVER |
|
34 |
TIMERS_DRIVER = SUB_TIMERS_DRIVER |
|
3 | 35 |
LED_ENABLE = SUB_LED_ENABLE |
0 | 36 |
|
15
e930a0e817de
Re-orginized led and nvram related code, for generic target.
etisserant
parents:
3
diff
changeset
|
37 |
INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(CAN_DRIVER) -I../../include/$(TIMERS_DRIVER) -I../../include/$(LED_DRIVER) -I../../include/$(NVRAM_DRIVER) |
0 | 38 |
|
39 |
MASTER_OBJS = TestSlave.o TestMaster.o TestMasterSlave.o Slave.o Master.o |
|
40 |
||
15
e930a0e817de
Re-orginized led and nvram related code, for generic target.
etisserant
parents:
3
diff
changeset
|
41 |
OBJS = $(MASTER_OBJS) ../../src/libcanfestival.a ../../drivers/$(TARGET)/libcanfestival_$(TARGET).a |
0 | 42 |
|
43 |
ifeq ($(TIMERS_DRIVER),timers_xeno) |
|
44 |
PROGDEFINES = -DUSE_XENO |
|
45 |
endif |
|
46 |
||
47 |
all: TestMasterSlave |
|
48 |
||
49 |
../../drivers/$(TARGET)/libcanfestival_$(TARGET).a: |
|
50 |
$(MAKE) -C ../../drivers/$(TARGET) libcanfestival_$(TARGET).a |
|
51 |
||
52 |
||
53 |
TestMasterSlave: $(OBJS) |
|
40
ddeeb217ed71
Updated configure and fixes in Makefiles.in for cygwin compiling.
etisserant
parents:
15
diff
changeset
|
54 |
$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ $(OBJS) $(EXE_CFLAGS) |
0 | 55 |
|
56 |
%o: %c |
|
57 |
$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $< |
|
58 |
||
59 |
clean: |
|
60 |
-rm $(MASTER_OBJS) |
|
61 |
-rm TestMasterSlave |
|
62 |
||
63 |
mrproper: clean |
|
64 |
||
65 |
||
66 |