]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - drivers/unix/Makefile.in
Updated configure and fixes in Makefiles.in for cygwin compiling.
[CanFestival-3.git] / drivers / unix / Makefile.in
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 LED_DRIVER = SUB_LED_DRIVER
37 NVRAM_DRIVER = SUB_NVRAM_DRIVER
38
39 INCLUDES = -I../../include -I../../include/$(SUB_TARGET)
40
41 OBJS = 
42
43 # add timers driver if any
44 ifneq ($(TIMERS_DRIVER),timers_)
45 OBJS += ../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o
46 endif
47
48 # add can driver if any
49 ifneq ($(CAN_DRIVER),can_)
50 OBJS += ../$(CAN_DRIVER)/$(CAN_DRIVER).o
51 endif
52
53 # add led driver if any
54 ifneq ($(LED_DRIVER),led_)
55 OBJS += ../$(LED_DRIVER)/$(LED_DRIVER).o
56 endif
57
58 # add nvram driver if any
59 ifneq ($(NVRAM_DRIVER),nvram_)
60 OBJS += ../$(NVRAM_DRIVER)/$(NVRAM_DRIVER).o
61 endif
62
63 SRC_HFILES = ../../include/$(TARGET)/applicfg.h
64
65 TARGET_HFILES = $(PREFIX)/include/$(TARGET)/applicfg.h
66
67 all: driver
68
69 driver: $(OBJS)
70
71 #../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o:
72 #       $(MAKE) -C ../$(TIMERS_DRIVER) driver
73
74 #../$(CAN_DRIVER)/$(CAN_DRIVER).o:
75 #       $(MAKE) -C ../$(CAN_DRIVER) driver
76
77 libcanfestival_$(TARGET).a: $(OBJS)
78         @echo Building [libcanfestival_$(TARGET).a]
79         ar rc $@ $(OBJS)
80         ranlib $@
81
82 install: libcanfestival_$(TARGET).a
83         mkdir -p $(PREFIX)/lib/
84         mkdir -p $(PREFIX)/include/canfestival
85         cp libcanfestival_$(TARGET).a $(PREFIX)/lib/
86         cp $(SRC_HFILES) $(PREFIX)/include/canfestival
87
88 uninstall:
89         rm -f $(PREFIX)/lib/libcanfestival_$(TARGET).a
90         rm -f $(TARGET_HFILES)
91
92 clean:
93         rm -f libcanfestival_$(TARGET).a
94
95 mrproper: clean
96
97