comparison packages/language/c/libc/current/src/PKGconf.mak @ 0:3111d98ba7b3 ecos-v1_1-release

Initial commit of eCos version 1.1
author jlarmour
date Tue, 11 May 1999 11:16:07 +0000
parents
children 443894e2e912
comparison
equal deleted inserted replaced
-1:000000000000 0:3111d98ba7b3
1 #=========================================================================
2 #
3 # makefile
4 #
5 # language/c/libc/src
6 #
7 #=========================================================================
8 #####COPYRIGHTBEGIN####
9 #
10 # -------------------------------------------
11 # The contents of this file are subject to the Cygnus eCos Public License
12 # Version 1.0 (the "License"); you may not use this file except in
13 # compliance with the License. You may obtain a copy of the License at
14 # http://sourceware.cygnus.com/ecos
15 #
16 # Software distributed under the License is distributed on an "AS IS"
17 # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
18 # License for the specific language governing rights and limitations under
19 # the License.
20 #
21 # The Original Code is eCos - Embedded Cygnus Operating System, released
22 # September 30, 1998.
23 #
24 # The Initial Developer of the Original Code is Cygnus. Portions created
25 # by Cygnus are Copyright (C) 1998 Cygnus Solutions. All Rights Reserved.
26 # -------------------------------------------
27 #
28 #####COPYRIGHTEND####
29 #=========================================================================
30
31 PACKAGE := libc
32 include ../../../../../pkgconf/pkgconf.mak
33
34 LIBRARY := libtarget.a
35 COMPILE := ctype/isalnum.cxx ctype/isalpha.cxx ctype/iscntrl.cxx \
36 ctype/isdigit.cxx ctype/isgraph.cxx ctype/islower.cxx \
37 ctype/isprint.cxx ctype/ispunct.cxx ctype/isspace.cxx \
38 ctype/isupper.cxx ctype/isxdigit.cxx ctype/tolower.cxx \
39 ctype/toupper.cxx \
40 \
41 errno/errno.cxx \
42 \
43 i18n/locale.cxx \
44 \
45 setjmp/longjmp.cxx \
46 \
47 stdio/common/fclose.cxx stdio/common/fflush.cxx \
48 stdio/common/fopen.cxx stdio/common/freopen.cxx \
49 stdio/common/setvbuf.cxx stdio/common/snprintf.cxx \
50 stdio/common/sprintf.cxx stdio/common/sscanf.cxx \
51 stdio/common/stdioinlines.cxx stdio/common/stdiosupp.cxx \
52 stdio/common/stream.cxx stdio/common/streambuf.cxx \
53 stdio/common/ungetc.cxx stdio/common/vsnprintf.cxx \
54 stdio/common/vsscanf.cxx stdio/input/fgetc.cxx \
55 stdio/input/fgets.cxx stdio/input/fread.cxx \
56 stdio/input/fscanf.cxx stdio/input/gets.cxx \
57 stdio/input/scanf.cxx stdio/input/vfscanf.cxx \
58 stdio/output/fnprintf.cxx stdio/output/fprintf.cxx \
59 stdio/output/fputc.cxx stdio/output/fputs.cxx \
60 stdio/output/fwrite.cxx stdio/output/printf.cxx \
61 stdio/output/vfnprintf.cxx \
62 \
63 stdlib/_exit.cxx stdlib/abort.cxx stdlib/abs.cxx \
64 stdlib/atexit.cxx stdlib/atof.cxx stdlib/atoi.cxx \
65 stdlib/atol.cxx stdlib/bsearch.cxx stdlib/div.cxx \
66 stdlib/exit.cxx stdlib/getenv.cxx stdlib/labs.cxx \
67 stdlib/ldiv.cxx stdlib/malloc.cxx stdlib/qsort.cxx \
68 stdlib/rand.cxx stdlib/strtod.cxx stdlib/strtol.cxx \
69 stdlib/strtoul.cxx \
70 \
71 string/memchr.cxx string/memcmp.cxx string/memmove.cxx \
72 string/strcat.cxx string/strchr.cxx string/strcmp.cxx \
73 string/strcoll.cxx string/strcpy.cxx string/strcspn.cxx \
74 string/strlen.cxx string/strncat.cxx string/strncmp.cxx \
75 string/strncpy.cxx string/strpbrk.cxx string/strrchr.cxx \
76 string/strspn.cxx string/strstr.cxx string/strsuppt.cxx\
77 string/strtok.cxx string/strxfrm.cxx \
78 \
79 support/clibdata.cxx support/cstartup.cxx \
80 \
81 time/clock.cxx
82
83 OTHER_OBJS :=
84 OTHER_TARGETS :=
85 OTHER_CLEAN :=
86
87 include $(COMPONENT_REPOSITORY)/pkgconf/makrules.src
88