]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - drivers/timers_win32/Makefile
Obsolete example files in objdictgen/examples replaced by some new equivalents
[CanFestival-3.git] / drivers / timers_win32 / Makefile
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 = mingw32-g++
25 OPT_CFLAGS = -O2
26 CFLAGS = $(OPT_CFLAGS)
27 PROG_CFLAGS = 
28 OS_NAME = MINGW32
29 ARCH_NAME = x86
30 PREFIX = /usr/local
31 TARGET = win32
32 CAN_DRIVER = can_peak_win32
33 TIMERS_DRIVER = timers_win32
34
35 INCLUDES = -I../../include -I../../include/$(TARGET) -I../../include/$(CAN_DRIVER) -I../../include/$(TIMERS_DRIVER)
36
37 OBJS = $(TIMERS_DRIVER).o
38
39 SRC_HFILES = ../../include/$(TIMERS_DRIVER)/timerscfg.h
40
41 TARGET_HFILES = $(PREFIX)/include/canfestival/timerscfg.h
42
43 all: driver
44
45 driver: $(OBJS)
46
47 %o: %cpp
48         $(CC) $(CFLAGS) $(PROG_CFLAGS) ${PROGDEFINES} $(INCLUDES) -o $@ -c $<
49
50 install:
51         mkdir -p $(PREFIX)/include/canfestival
52         cp $(SRC_HFILES) $(PREFIX)/include/canfestival
53
54 uninstall:
55         rm -f $(TARGET_HFILES)
56
57 clean:
58         rm -f $(OBJS)
59
60 mrproper: clean
61
62