author | leonid |
Wed, 14 Feb 2007 22:19:53 +0100 | |
changeset 100 | b4c844e925ce |
parent 93 | 16c8ceea8f18 |
child 145 | e747d2e26af0 |
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 |
PROG_CFLAGS = SUB_PROG_CFLAGS |
|
26 |
LIBS = -lm |
|
27 |
SHAREDLIBOPT = -shared |
|
28 |
OS_NAME = SUB_OS_NAME |
|
29 |
ARCH_NAME = SUB_ARCH_NAME |
|
30 |
PREFIX = SUB_PREFIX |
|
31 |
BINUTILS_PREFIX = SUB_BINUTILS_PREFIX |
|
32 |
TARGET = SUB_TARGET |
|
33 |
CAN_DRIVER = SUB_CAN_DRIVER |
|
34 |
TIMERS_DRIVER = SUB_TIMERS_DRIVER |
|
35 |
||
36 |
INCLUDES = -I../include -I../include/$(TARGET) -I../include/$(CAN_DRIVER) -I../include/$(TIMERS_DRIVER) -I../drivers/$(TARGET) |
|
37 |
||
38 |
OBJS = $(TARGET)_objacces.o $(TARGET)_lifegrd.o $(TARGET)_sdo.o\ |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
3
diff
changeset
|
39 |
$(TARGET)_pdo.o $(TARGET)_sync.o $(TARGET)_nmtSlave.o $(TARGET)_nmtMaster.o $(TARGET)_states.o $(TARGET)_timer.o |
0 | 40 |
|
41 |
# # # # Target specific paramters # # # # |
|
42 |
||
43 |
ifeq ($(TARGET),ecos_lpc2138_sja1000) |
|
44 |
ECOS_GLOBAL_CFLAGS=-mcpu=arm7tdmi -Wall -Wpointer-arith -Wstrict-prototypes -Winline -Wundef -Os -ffunction-sections -fdata-sections -fno-exceptions -finline-functions |
|
45 |
ECOS_GLOBAL_LDFLAGS=-mcpu=arm7tdmi -Wl,--gc-sections -Wl,-static -nostdlib |
|
46 |
endif |
|
47 |
||
48 |
ifeq ($(TARGET),hcs12) |
|
49 |
OPT_CFLAGS = -Os |
|
50 |
PROGDEFINES = -mnoshort -Wall -Wmissing-prototypes -fno-strict-aliasing |
|
51 |
endif |
|
52 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
3
diff
changeset
|
53 |
ifeq ($(TARGET),unix) |
0 | 54 |
OPT_CFLAGS = -O2 |
55 |
endif |
|
56 |
||
57 |
# # # # Options # # # # |
|
58 |
||
59 |
CFLAGS = SUB_OPT_CFLAGS |
|
60 |
||
61 |
all: canfestival |
|
62 |
||
63 |
canfestival: libcanfestival.a |
|
64 |
||
65 |
libcanfestival.a: $(OBJS) |
|
66 |
@echo " " |
|
67 |
@echo "*********************************************" |
|
68 |
@echo "**Building [libcanfestival.a]" |
|
69 |
@echo "*********************************************" |
|
70 |
$(BINUTILS_PREFIX)ar rc $@ $(OBJS) |
|
71 |
$(BINUTILS_PREFIX)ranlib $@ |
|
72 |
||
73 |
$(TARGET)_%o: %c |
|
74 |
@echo " " |
|
75 |
@echo "*********************************************" |
|
76 |
@echo "**Compiling $< -> $@" |
|
77 |
@echo "*********************************************" |
|
78 |
$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $< |
|
79 |
||
80 |
install: libcanfestival.a |
|
81 |
mkdir -p $(PREFIX)/lib/ |
|
82 |
mkdir -p $(PREFIX)/include/canfestival |
|
83 |
cp libcanfestival.a $(PREFIX)/lib/ |
|
84 |
cp ../include/*.h $(PREFIX)/include/canfestival |
|
85 |
||
86 |
uninstall: |
|
87 |
rm -f $(PREFIX)/lib/libcanfestival.a |
|
88 |
rm -rf $(PREFIX)/include/canfestival |
|
89 |
||
90 |
clean: |
|
91 |
rm -f $(OBJS) libcanfestival.a |
|
92 |
||
93 |
mrproper: clean |
|
94 |