blob: d36225f5244ec2202d22db7969c2908b3dcc06af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Makefile for uClibc
#
# Copyright (C) 2000,2001,2005 Erik Andersen <andersen@uclibc.org>
#
# Derived in part from the Linux-8086 C library, the GNU C Library, and several
# other sundry sources. Files within this library are copyright by their
# respective copyright holders.
#
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
#
include ../Config.mk
ALL = #ld.so.info
all: $(ALL)
ld.so.info: ld.so.texi
makeinfo $<
clean:
$(RM) $(ALL) *~
|