blob: 54ebd2bac14ddf558a4e36a8ea2c4c4c992254a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.11 2008/05/27 18:52:40 miod Exp $
LIB= iberty
CPPFLAGS+= -DHAVE_CONFIG_H -I$(.CURDIR)/src -I$(.CURDIR)/include -I$(.OBJDIR)
NOLINT=
HOST_FILES!= cat $(.OBJDIR)/needed-list 2>/dev/null||true
.PATH: ${.CURDIR}/src
# XXX remove oldhashtab.c once gcc 2.95 is no longer used
SRCS= argv.c choose-temp.c concat.c cplus-dem.c cp-demangle.c \
dyn-string.c \
fdmatch.c getopt.c getopt1.c getpwd.c getruntime.c \
hashtab.c hex.c fibheap.c partition.c \
floatformat.c make-temp-file.c make-relative-prefix.c \
objalloc.c obstack.c oldhashtab.c \
pexecute.c regex.c safe-ctype.c spaces.c splay-tree.c \
strerror.c strsignal.c strverscmp.c \
xatexit.c xexit.c xmalloc.c xmemdup.c xstrerror.c xstrdup.c \
physmem.c lbasename.c lrealpath.c \
$(HOST_FILES)
# XXX -- These files are generated during the PREREQ variable assignment.
CLEANFILES+= config.h config.status needed-list
# and more
CLEANFILES+= Makefile config.cache config.log stamp-h xhost-mkfrag \
testsuite/Makefile libiberty.info
depend: needed-list
needed-list: config.status
${MAKE} ${GNUCFLAGS} CC=${CC} needed-list
config.status: Makefile.in configure
PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
MAKEINFO='makeinfo --no-split' \
/bin/sh ${.CURDIR}/src/configure \
--prefix=/usr --with-local-prefix=/usr ${CF} \
&& touch config.status
all: libiberty.info
libiberty.info:
makeinfo --no-split -I${.CURDIR}/src ${.CURDIR}/src/libiberty.texi
afterinstall:
${INSTALL} ${INSTALL_COPY} -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} \
libiberty.info $(DESTDIR)/usr/share/info
.include <bsd.lib.mk>
|