author | oremeq |
Sat, 20 May 2006 00:16:29 +0200 | |
changeset 21 | 8737e6224393 |
parent 18 | 2fc8aa46980b |
child 22 | dbf27bc2fd99 |
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 |
|
3 | 36 |
LED_ENABLE = SUB_LED_ENABLE |
18
2fc8aa46980b
First version of NVRAM implemented on the file system for can_virtual
oremeq
parents:
15
diff
changeset
|
37 |
NVRAM_ENABLE = SUB_NVRAM_ENABLE |
0 | 38 |
|
39 |
INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(CAN_DRIVER) -I../../include/$(TIMERS_DRIVER) |
|
40 |
||
41 |
OBJS = $(CAN_DRIVER).o |
|
42 |
||
43 |
SRC_HFILES = ../../include/$(CAN_DRIVER)/cancfg.h |
|
44 |
||
45 |
TARGET_HFILES = $(PREFIX)/include/canfestival/cancfg.h |
|
46 |
||
18
2fc8aa46980b
First version of NVRAM implemented on the file system for can_virtual
oremeq
parents:
15
diff
changeset
|
47 |
ifeq ($(NVRAM_ENABLE),YES) |
2fc8aa46980b
First version of NVRAM implemented on the file system for can_virtual
oremeq
parents:
15
diff
changeset
|
48 |
OBJS += nvram.o |
2fc8aa46980b
First version of NVRAM implemented on the file system for can_virtual
oremeq
parents:
15
diff
changeset
|
49 |
SRC_HFILES += ../include/nvram.h |
2fc8aa46980b
First version of NVRAM implemented on the file system for can_virtual
oremeq
parents:
15
diff
changeset
|
50 |
endif |
2fc8aa46980b
First version of NVRAM implemented on the file system for can_virtual
oremeq
parents:
15
diff
changeset
|
51 |
|
0 | 52 |
all: driver |
53 |
||
54 |
driver: $(OBJS) |
|
55 |
||
56 |
%o: %c |
|
57 |
$(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $< |
|
58 |
||
59 |
install: |
|
60 |
mkdir -p $(PREFIX)/include/canfestival |
|
61 |
cp $(SRC_HFILES) $(PREFIX)/include/canfestival |
|
62 |
||
63 |
uninstall: |
|
64 |
rm -f $(TARGET_HFILES) |
|
65 |
||
66 |
clean: |
|
67 |
-\rm $(OBJS) |
|
68 |
||
69 |
mrproper: clean |