author | frdupin |
Mon, 29 Jan 2007 09:27:58 +0100 | |
changeset 74 | c0b4b2ef7579 |
parent 40 | ddeeb217ed71 |
child 93 | 16c8ceea8f18 |
permissions | -rw-r--r-- |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
1 |
#! gmake |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
2 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
3 |
# |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
4 |
# Copyright (C) 2006 Laurent Bessard |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
5 |
# |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
6 |
# This file is part of canfestival, a library implementing the canopen |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
7 |
# stack |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
8 |
# |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
9 |
# This library is free software; you can redistribute it and/or |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
10 |
# modify it under the terms of the GNU Lesser General Public |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
11 |
# License as published by the Free Software Foundation; either |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
12 |
# version 2.1 of the License, or (at your option) any later version. |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
13 |
# |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
14 |
# This library is distributed in the hope that it will be useful, |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
15 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
16 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
17 |
# Lesser General Public License for more details. |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
18 |
# |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
19 |
# You should have received a copy of the GNU Lesser General Public |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
20 |
# License along with this library; if not, write to the Free Software |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
21 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
22 |
# |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
23 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
24 |
CC = SUB_CC |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
25 |
OPT_CFLAGS = -O2 |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
26 |
CFLAGS = SUB_OPT_CFLAGS |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
27 |
PROG_CFLAGS = SUB_PROG_CFLAGS |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
28 |
LIBS = -lm |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
29 |
SHAREDLIBOPT = -shared |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
30 |
OS_NAME = SUB_OS_NAME |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
31 |
ARCH_NAME = SUB_ARCH_NAME |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
32 |
PREFIX = SUB_PREFIX |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
33 |
TARGET = SUB_TARGET |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
34 |
CAN_DRIVER = SUB_CAN_DRIVER |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
35 |
TIMERS_DRIVER = SUB_TIMERS_DRIVER |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
36 |
LED_DRIVER = SUB_LED_DRIVER |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
37 |
NVRAM_DRIVER = SUB_NVRAM_DRIVER |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
38 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
39 |
INCLUDES = -I../../include -I../../include/$(SUB_TARGET) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
40 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
41 |
OBJS = |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
42 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
43 |
# add timers driver if any |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
44 |
ifneq ($(TIMERS_DRIVER),timers_) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
45 |
OBJS += ../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
46 |
endif |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
47 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
48 |
# add can driver if any |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
49 |
ifneq ($(CAN_DRIVER),can_) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
50 |
OBJS += ../$(CAN_DRIVER)/$(CAN_DRIVER).o |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
51 |
endif |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
52 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
53 |
# add led driver if any |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
54 |
ifneq ($(LED_DRIVER),led_) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
55 |
OBJS += ../$(LED_DRIVER)/$(LED_DRIVER).o |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
56 |
endif |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
57 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
58 |
# add nvram driver if any |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
59 |
ifneq ($(NVRAM_DRIVER),nvram_) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
60 |
OBJS += ../$(NVRAM_DRIVER)/$(NVRAM_DRIVER).o |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
61 |
endif |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
62 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
63 |
SRC_HFILES = ../../include/$(TARGET)/applicfg.h |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
64 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
65 |
TARGET_HFILES = $(PREFIX)/include/$(TARGET)/applicfg.h |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
66 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
67 |
all: driver |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
68 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
69 |
driver: $(OBJS) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
70 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
71 |
#../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o: |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
72 |
# $(MAKE) -C ../$(TIMERS_DRIVER) driver |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
73 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
74 |
#../$(CAN_DRIVER)/$(CAN_DRIVER).o: |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
75 |
# $(MAKE) -C ../$(CAN_DRIVER) driver |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
76 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
77 |
libcanfestival_$(TARGET).a: $(OBJS) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
78 |
@echo Building [libcanfestival_$(TARGET).a] |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
79 |
ar rc $@ $(OBJS) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
80 |
ranlib $@ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
81 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
82 |
install: libcanfestival_$(TARGET).a |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
83 |
mkdir -p $(PREFIX)/lib/ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
84 |
mkdir -p $(PREFIX)/include/canfestival |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
85 |
cp libcanfestival_$(TARGET).a $(PREFIX)/lib/ |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
86 |
cp $(SRC_HFILES) $(PREFIX)/include/canfestival |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
87 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
88 |
uninstall: |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
89 |
rm -f $(PREFIX)/lib/libcanfestival_$(TARGET).a |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
90 |
rm -f $(TARGET_HFILES) |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
91 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
92 |
clean: |
40
ddeeb217ed71
Updated configure and fixes in Makefiles.in for cygwin compiling.
etisserant
parents:
24
diff
changeset
|
93 |
rm -f libcanfestival_$(TARGET).a |
24
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
94 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
95 |
mrproper: clean |
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
96 |
|
a9543d2ccd56
Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents:
diff
changeset
|
97 |