author | leonid |
Wed, 14 Feb 2007 22:19:53 +0100 | |
changeset 101 | 758c74999b6e |
parent 94 | bdf4c86be6b2 |
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 |
OPT_CFLAGS = -O2 |
|
26 |
CFLAGS = SUB_OPT_CFLAGS |
|
27 |
PROG_CFLAGS = SUB_PROG_CFLAGS |
|
28 |
LIBS = -lm |
|
29 |
SHAREDLIBOPT = -shared |
|
30 |
OS_NAME = SUB_OS_NAME |
|
31 |
ARCH_NAME = SUB_ARCH_NAME |
|
32 |
PREFIX = SUB_PREFIX |
|
33 |
TARGET = SUB_TARGET |
|
34 |
CAN_DRIVER = SUB_CAN_DRIVER |
|
35 |
TIMERS_DRIVER = SUB_TIMERS_DRIVER |
|
36 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
37 |
INCLUDES = -I../../include -I../../include/$(SUB_TARGET) |
0 | 38 |
|
39 |
OBJS = |
|
40 |
||
41 |
# add timers driver if any |
|
15
e930a0e817de
Re-orginized led and nvram related code, for generic target.
etisserant
parents:
0
diff
changeset
|
42 |
ifneq ($(TIMERS_DRIVER),timers_) |
0 | 43 |
OBJS += ../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o |
44 |
endif |
|
45 |
||
46 |
# add can driver if any |
|
15
e930a0e817de
Re-orginized led and nvram related code, for generic target.
etisserant
parents:
0
diff
changeset
|
47 |
ifneq ($(CAN_DRIVER),can_) |
0 | 48 |
OBJS += ../$(CAN_DRIVER)/$(CAN_DRIVER).o |
49 |
endif |
|
50 |
||
51 |
SRC_HFILES = ../../include/$(TARGET)/applicfg.h |
|
52 |
||
53 |
TARGET_HFILES = $(PREFIX)/include/$(TARGET)/applicfg.h |
|
54 |
||
55 |
all: driver |
|
56 |
||
57 |
driver: $(OBJS) |
|
58 |
||
59 |
#../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o: |
|
60 |
# $(MAKE) -C ../$(TIMERS_DRIVER) driver |
|
61 |
||
62 |
#../$(CAN_DRIVER)/$(CAN_DRIVER).o: |
|
63 |
# $(MAKE) -C ../$(CAN_DRIVER) driver |
|
64 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
65 |
libcanfestival_$(TARGET).a: $(OBJS) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
66 |
@echo Building [libcanfestival_$(TARGET).a] |
0 | 67 |
ar rc $@ $(OBJS) |
68 |
ranlib $@ |
|
69 |
||
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
70 |
install: libcanfestival_$(TARGET).a |
0 | 71 |
mkdir -p $(PREFIX)/lib/ |
72 |
mkdir -p $(PREFIX)/include/canfestival |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
73 |
cp libcanfestival_$(TARGET).a $(PREFIX)/lib/ |
0 | 74 |
cp $(SRC_HFILES) $(PREFIX)/include/canfestival |
75 |
||
76 |
uninstall: |
|
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
15
diff
changeset
|
77 |
rm -f $(PREFIX)/lib/libcanfestival_$(TARGET).a |
0 | 78 |
rm -f $(TARGET_HFILES) |
79 |
||
80 |
clean: |
|
40
ddeeb217ed71
Updated configure and fixes in Makefiles.in for cygwin compiling.
etisserant
parents:
24
diff
changeset
|
81 |
rm -f libcanfestival_$(TARGET).a |
0 | 82 |
|
83 |
mrproper: clean |
|
84 |
||
85 |