author | etisserant |
Thu, 10 Aug 2006 17:38:53 +0200 | |
changeset 45 | 45885c4e3e56 |
parent 24 | a9543d2ccd56 |
child 93 | 16c8ceea8f18 |
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 |
|
3 | 33 |
LSS_ENABLE = SUB_LSS_ENABLE |
34 |
LED_ENABLE = SUB_LED_ENABLE |
|
35 |
NVRAM_ENABLE = SUB_NVRAM_ENABLE |
|
0 | 36 |
CAN_DRIVER = SUB_CAN_DRIVER |
37 |
TIMERS_DRIVER = SUB_TIMERS_DRIVER |
|
38 |
||
39 |
INCLUDES = -I../include -I../include/$(TARGET) -I../include/$(CAN_DRIVER) -I../include/$(TIMERS_DRIVER) -I../drivers/$(TARGET) |
|
40 |
||
41 |
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
|
42 |
$(TARGET)_pdo.o $(TARGET)_sync.o $(TARGET)_nmtSlave.o $(TARGET)_nmtMaster.o $(TARGET)_states.o $(TARGET)_timer.o |
0 | 43 |
|
44 |
# # # # Target specific paramters # # # # |
|
45 |
||
46 |
ifeq ($(TARGET),ecos_lpc2138_sja1000) |
|
47 |
ECOS_GLOBAL_CFLAGS=-mcpu=arm7tdmi -Wall -Wpointer-arith -Wstrict-prototypes -Winline -Wundef -Os -ffunction-sections -fdata-sections -fno-exceptions -finline-functions |
|
48 |
ECOS_GLOBAL_LDFLAGS=-mcpu=arm7tdmi -Wl,--gc-sections -Wl,-static -nostdlib |
|
49 |
endif |
|
50 |
||
51 |
ifeq ($(TARGET),hcs12) |
|
52 |
OPT_CFLAGS = -Os |
|
53 |
PROGDEFINES = -mnoshort -Wall -Wmissing-prototypes -fno-strict-aliasing |
|
54 |
endif |
|
55 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
3
diff
changeset
|
56 |
ifeq ($(TARGET),unix) |
0 | 57 |
OPT_CFLAGS = -O2 |
58 |
endif |
|
59 |
||
60 |
# # # # Options # # # # |
|
61 |
||
62 |
ifeq ($(LSS_ENABLE),YES) |
|
63 |
OBJS += $(TARGET)_lss.o |
|
64 |
SRC_HFILES += ../include/lss.h |
|
65 |
endif |
|
66 |
||
67 |
ifeq ($(LED_ENABLE),YES) |
|
68 |
OBJS += $(TARGET)_led.o |
|
69 |
SRC_HFILES += ../include/led.h |
|
3 | 70 |
PROG_CFLAGS += -DLED_ENABLE |
0 | 71 |
endif |
72 |
||
73 |
ifeq ($(NVRAM_ENABLE),YES) |
|
74 |
OBJS += $(TARGET)_nvram.o |
|
75 |
SRC_HFILES += ../include/nvram.h |
|
76 |
endif |
|
77 |
||
78 |
CFLAGS = SUB_OPT_CFLAGS |
|
79 |
||
80 |
all: canfestival |
|
81 |
||
82 |
canfestival: libcanfestival.a |
|
83 |
||
84 |
libcanfestival.a: $(OBJS) |
|
85 |
@echo " " |
|
86 |
@echo "*********************************************" |
|
87 |
@echo "**Building [libcanfestival.a]" |
|
88 |
@echo "*********************************************" |
|
89 |
$(BINUTILS_PREFIX)ar rc $@ $(OBJS) |
|
90 |
$(BINUTILS_PREFIX)ranlib $@ |
|
91 |
||
92 |
$(TARGET)_%o: %c |
|
93 |
@echo " " |
|
94 |
@echo "*********************************************" |
|
95 |
@echo "**Compiling $< -> $@" |
|
96 |
@echo "*********************************************" |
|
97 |
$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $< |
|
98 |
||
99 |
install: libcanfestival.a |
|
100 |
mkdir -p $(PREFIX)/lib/ |
|
101 |
mkdir -p $(PREFIX)/include/canfestival |
|
102 |
cp libcanfestival.a $(PREFIX)/lib/ |
|
103 |
cp ../include/*.h $(PREFIX)/include/canfestival |
|
104 |
||
105 |
uninstall: |
|
106 |
rm -f $(PREFIX)/lib/libcanfestival.a |
|
107 |
rm -rf $(PREFIX)/include/canfestival |
|
108 |
||
109 |
clean: |
|
110 |
rm -f $(OBJS) libcanfestival.a |
|
111 |
||
112 |
mrproper: clean |
|
113 |