drivers/generic/Makefile.in
changeset 0 4472ee7c6c3e
child 15 e930a0e817de
equal deleted inserted replaced
-1:000000000000 0:4472ee7c6c3e
       
     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 
       
    37 INCLUDES = -I../../include -I../../include/generic
       
    38 
       
    39 OBJS = 
       
    40 
       
    41 # add timers driver if any
       
    42 ifneq ($(TIMERS_DRIVER),)
       
    43 OBJS += ../$(TIMERS_DRIVER)/$(TIMERS_DRIVER).o
       
    44 endif
       
    45 
       
    46 # add can driver if any
       
    47 ifneq ($(CAN_DRIVER),)
       
    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 
       
    65 libcanfestival_generic.a: $(OBJS)
       
    66 	@echo Building [libcanfestival_generic.a]
       
    67 	ar rc $@ $(OBJS)
       
    68 	ranlib $@
       
    69 
       
    70 install: libcanfestival_generic.a
       
    71 	mkdir -p $(PREFIX)/lib/
       
    72 	mkdir -p $(PREFIX)/include/canfestival
       
    73 	cp libcanfestival_generic.a $(PREFIX)/lib/
       
    74 	cp $(SRC_HFILES) $(PREFIX)/include/canfestival
       
    75 
       
    76 uninstall:
       
    77 	rm -f $(PREFIX)/lib/libcanfestival_generic.a
       
    78 	rm -f $(TARGET_HFILES)
       
    79 
       
    80 clean:
       
    81 	-\rm libcanfestival_generic.a
       
    82 
       
    83 mrproper: clean
       
    84 
       
    85