* device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support functions to
[fw/sdcc] / device / lib / pic16 / libc / utils / Makefile
1 #
2 # Makefile - Makefile to build pic16 C 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
29 include ../Makefile.rules
30
31 CSRCS   =
32
33 SSRCS   =       cnvfrac \
34                 cnvint
35
36 SRCS    = $(CSRCS)
37 # $(SSRCS)
38
39 CFILES  = $(patsubst %,%.c,$(CSRCS))
40 SFILES  = $(patsubst %,%.S,$(SSRCS))
41
42 COFILES = $(patsubst %.c,%.o,$(CFILES))
43 SOFILES = $(patsubst %.S,%.o,$(SFILES))
44
45 OFILES  = $(COFILES)
46 OFILES  += $(SOFILES)
47
48 DEBUG=
49 #COMPILE_FLAGS   += --pomit-config-words --pomit-ivt --no-peep
50 COMPILE_FLAGS   += $(DEBUG)
51
52 %.o: %.c
53         $(CC) $(CFLAGS) $(COMPILE_FLAGS) -c $<
54
55 %.o: %.S
56         $(AS) -c $<
57
58
59 build-library: $(OFILES)
60