summaryrefslogtreecommitdiff
path: root/openbsd-compat/Makefile.in
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-01-31 21:52:01 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-01-31 21:52:01 +0000
commit3c06f6a0b234822c7b2d6c63ef1aaf554af7167b (patch)
tree86e5fe626cb9cbade752baf2440badfa19976200 /openbsd-compat/Makefile.in
parentbf75776d415126a415ac92fb767c70dc67feba4f (diff)
- (bal) Reorder. Move all bsd-*, fake-*, next-*, and cygwin* stuff to
openbsd-compat/. And resolve all ./configure and Makefile.in issues assocated. Logic: * All OpenBSD functions should have the same filename as in the OpenBSD tree * All 'home brew' functions have bsd-* infront of them. * All 'not really implemented' functions have fake-* infront of them.
Diffstat (limited to 'openbsd-compat/Makefile.in')
-rw-r--r--openbsd-compat/Makefile.in33
1 files changed, 33 insertions, 0 deletions
diff --git a/openbsd-compat/Makefile.in b/openbsd-compat/Makefile.in
new file mode 100644
index 000000000..1c745fb8c
--- /dev/null
+++ b/openbsd-compat/Makefile.in
@@ -0,0 +1,33 @@
1sysconfdir=@sysconfdir@
2piddir=@piddir@
3srcdir=@srcdir@
4top_srcdir=@top_srcdir@
5
6CC=@CC@
7LD=@LD@
8CFLAGS=@CFLAGS@
9CPPFLAGS=@CPPFLAGS@ -I. -I.. -I$(srcdir) @DEFS@
10LIBS=@LIBS@
11AR=@AR@
12RANLIB=@RANLIB@
13INSTALL=@INSTALL@
14LDFLAGS=-L. @LDFLAGS@
15
16OPENBSD=base64.o bindresvport.o daemon.o getcwd.o getgrouplist.o inet_aton.o inet_ntoa.o mktemp.o realpath.o rresvport.o setenv.o setproctitle.o sigaction.o strlcat.o strlcpy.o strmode.o strsep.o strtok.o vis.o
17
18COMPAT=bsd-arc4random.o bsd-cygwin_util.o bsd-misc.o bsd-nextstep.o bsd-snprintf.o bsd-waitpid.o fake-getaddrinfo.o fake-getnameinfo.o
19
20
21all: libopenbsd-compat.a
22
23$(BSDCOMPAT): ../config.h
24
25libopenbsd-compat.a: $(COMPAT) $(OPENBSD)
26 $(AR) rv $@ $(COMPAT) $(OPENBSD)
27 $(RANLIB) $@
28
29clean:
30 rm -f *.o *.a core
31
32distclean: clean
33 rm -f Makefile *~