* src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
[fw/sdcc] / device / lib / pic16 / libio / adc / Makefile
1 #
2 # Makefile - Makefile to build pic16 AD convertion library
3 #
4 # This file is part of the GNU PIC Library.
5 #
6 # January, 2004
7 # The GNU PIC Library is maintained by,
8 #       Vangelis Rokas <vrokas@otenet.gr>
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Library General Public License
12 # as published by the Free Software Foundation; either version 2
13 # of the License, or (at your option) any later version.
14 #
15 # This library is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23 #
24 #
25 # $Id$
26 #
27
28 include ../Makefile.rules
29
30 SRCS    =       adcbusy \
31                 adcclose \
32                 adcconv \
33                 adcopen \
34                 adcread \
35                 adcsetch
36
37
38 CFILES  = $(patsubst %,%.c,$(SRCS))
39 OFILES  = $(patsubst %.c,%.o,$(CFILES))
40
41
42 DEBUG=
43 #COMPILE_FLAGS   += --pomit-config-words --pomit-ivt --denable-peeps --optimize-goto --obanksel=2
44 COMPILE_FLAGS   += $(DEBUG)
45
46 CFILES  = $(patsubst %,%.c,$(SRCS))
47 OFILES  = $(patsubst %.c,%.o,$(CFILES))
48
49 %.o: %.c
50         $(CC) $(CFLAGS) $(COMPILE_FLAGS) -c $<
51
52 build-library: $(OFILES)
53