drivers/generic/Makefile.in
changeset 149 fe50ada8020b
parent 148 ad3de8730172
child 150 d2fc5d5f8a36
equal deleted inserted replaced
148:ad3de8730172 149:fe50ada8020b
     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 OS_NAME = SUB_OS_NAME
       
    29 ARCH_NAME = SUB_ARCH_NAME
       
    30 PREFIX = SUB_PREFIX
       
    31 TARGET = SUB_TARGET
       
    32 CAN_DRIVER = SUB_CAN_DRIVER
       
    33 TIMERS_DRIVER = SUB_TIMERS_DRIVER
       
    34 
       
    35 INCLUDES = -I../../include -I../../include/$(SUB_TARGET)
       
    36 
       
    37 OBJS = 
       
    38 
       
    39 # add timers driver if any
       
    40 ifneq ($(TIMERS_DRIVER),timers_)
       
    41 OBJS += ../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o
       
    42 endif
       
    43 
       
    44 # add can driver if any
       
    45 ifneq ($(CAN_DRIVER),can_)
       
    46 OBJS += ../$(CAN_DRIVER)/$(CAN_DRIVER).o
       
    47 endif
       
    48 
       
    49 SRC_HFILES = ../../include/$(TARGET)/applicfg.h
       
    50 
       
    51 TARGET_HFILES = $(PREFIX)/include/$(TARGET)/applicfg.h
       
    52 
       
    53 all: driver
       
    54 
       
    55 driver: $(OBJS)
       
    56 
       
    57 #../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o:
       
    58 #	$(MAKE) -C ../$(TIMERS_DRIVER) driver
       
    59 
       
    60 #../$(CAN_DRIVER)/$(CAN_DRIVER).o:
       
    61 #	$(MAKE) -C ../$(CAN_DRIVER) driver
       
    62 
       
    63 libcanfestival_$(TARGET).a: $(OBJS)
       
    64 	@echo Building [libcanfestival_$(TARGET).a]
       
    65 	ar rc $@ $(OBJS)
       
    66 	ranlib $@
       
    67 
       
    68 install: libcanfestival_$(TARGET).a
       
    69 	mkdir -p $(PREFIX)/lib/
       
    70 	mkdir -p $(PREFIX)/include/canfestival
       
    71 	cp libcanfestival_$(TARGET).a $(PREFIX)/lib/
       
    72 	cp $(SRC_HFILES) $(PREFIX)/include/canfestival
       
    73 
       
    74 uninstall:
       
    75 	rm -f $(PREFIX)/lib/libcanfestival_$(TARGET).a
       
    76 	rm -f $(TARGET_HFILES)
       
    77 
       
    78 clean:
       
    79 	rm -f libcanfestival_$(TARGET).a
       
    80 
       
    81 mrproper: clean
       
    82 
       
    83