File: Makefile

package info (click to toggle)
libc-sparc 5.3.12-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 18,664 kB
  • ctags: 53,237
  • sloc: ansic: 181,379; asm: 5,080; makefile: 3,340; lex: 521; sh: 439; yacc: 401; awk: 28
file content (24 lines) | stat: -rw-r--r-- 620 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# This is Makefile of stdlib functions for Linux.
#

TOPDIR=..

include $(TOPDIR)/Makeconfig
include $(TOPDIR)/Makerules

INC_CFLAGS=-I. -I../sysdeps/generic

DIRS:=
SRC1S= __random.c _quicksort.c abort.c atexit.c atof.c \
	atoi.c atol.c bsearch.c exit.c labs.c ldiv.c \
	mblen.c mbstowcs.c mbtowc.c on_exit.c qsort.c rand.c \
	strtol.c strtoul.c wcstombs.c wctomb.c \
	strtoq.c strtouq.c strtod.c strtof.c strtold.c fpioconst.c
SRC2S= abs.c random.c srand.c #strtof.c strtold.c
SRCS= $(SRC1S) $(SRC2S)
ASMS= $(SRC1S:.c=.s) $(SRC2S:.c=.s)
OBJS= $(SRC1S:.c=.o)
ALIASES= $(SRC2S:.c=.o)
 
include $(TOPDIR)/Maketargets