summaryrefslogtreecommitdiff
path: root/other/ssharp/openbsd-compat/Makefile.in
diff options
context:
space:
mode:
authorSkyperTHC2026-03-03 06:28:55 +0000
committerSkyperTHC2026-03-03 06:28:55 +0000
commit5d3573ef7a109ee70416fe94db098fe6a769a798 (patch)
treedc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/ssharp/openbsd-compat/Makefile.in
parentc6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff)
packetstorm sync
Diffstat (limited to 'other/ssharp/openbsd-compat/Makefile.in')
-rw-r--r--other/ssharp/openbsd-compat/Makefile.in39
1 files changed, 39 insertions, 0 deletions
diff --git a/other/ssharp/openbsd-compat/Makefile.in b/other/ssharp/openbsd-compat/Makefile.in
new file mode 100644
index 0000000..0e99d8e
--- /dev/null
+++ b/other/ssharp/openbsd-compat/Makefile.in
@@ -0,0 +1,39 @@
1# $Id: Makefile.in,v 1.1.1.1 2001/09/19 14:44:59 stealth Exp $
2
3sysconfdir=@sysconfdir@
4piddir=@piddir@
5srcdir=@srcdir@
6top_srcdir=@top_srcdir@
7
8VPATH=@srcdir@
9CC=@CC@
10LD=@LD@
11CFLAGS=@CFLAGS@
12CPPFLAGS=-I. -I.. -I$(srcdir) -I$(srcdir)/.. @CPPFLAGS@ @DEFS@
13LIBS=@LIBS@
14AR=@AR@
15RANLIB=@RANLIB@
16INSTALL=@INSTALL@
17LDFLAGS=-L. @LDFLAGS@
18
19OPENBSD=base64.o bindresvport.o daemon.o getcwd.o getgrouplist.o getusershell.o glob.o inet_aton.o inet_ntoa.o inet_ntop.o mktemp.o realpath.o rresvport.o setenv.o setproctitle.o sigact.o strlcat.o strlcpy.o strmode.o strsep.o strtok.o vis.o
20
21COMPAT=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
22
23.c.o:
24 $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
25
26all: libopenbsd-compat.a
27
28$(COMPAT): ../config.h
29$(OPENBSD): ../config.h
30
31libopenbsd-compat.a: $(COMPAT) $(OPENBSD)
32 $(AR) rv $@ $(COMPAT) $(OPENBSD)
33 $(RANLIB) $@
34
35clean:
36 rm -f *.o *.a core
37
38distclean: clean
39 rm -f Makefile *~