blob: 24ffed2ab11da0948d23ff2a72206a5d53b7c00d (
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
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.3 1996/03/28 07:31:07 etheisen Exp $
LIB= iberty
CPPFLAGS+= -I$(.CURDIR) -I$(.CURDIR)/../include -I$(.OBJDIR)
# XXX -- GNUism
# As we need to fill variables with contents of dynamically created files
# we must first see to that they are really generated. This is a hack that
# ensures this. The echo at the end is because make doesn't like command
# substitutions to not generate output.
PREREQ!= test ! -f $(.OBJDIR)/needed-list && \
(cd $(.CURDIR); \
$(MAKE) -f Makefile.bsd-wrapper1); \
echo 'Prerequistes made'
HOST_FILES!= cat $(.OBJDIR)/needed-list
SRCS= argv.c basename.c concat.c cplus-dem.c fdmatch.c \
getopt.c getopt1.c getruntime.c hex.c \
floatformat.c obstack.c spaces.c strerror.c strsignal.c \
vasprintf.c xatexit.c xexit.c xmalloc.c xstrerror.c \
$(HOST_FILES)
# XXX -- These files are generated during the PREREQ variable assignment.
CLEANFILES+= alloca-conf.h config.h dummy dummy.o errors lconfig.h \
lneeded-list needed-list needed.awk needed2.awk stamp-picdir
.include <bsd.lib.mk>
|