You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.5 KiB
42 lines
1.5 KiB
# $Id: Makefile.in,v 1.56 2014/09/30 23:43:08 djm Exp $ |
|
|
|
sysconfdir=@sysconfdir@ |
|
piddir=@piddir@ |
|
srcdir=@srcdir@ |
|
top_srcdir=@top_srcdir@ |
|
|
|
VPATH=@srcdir@ |
|
CC=@CC@ |
|
LD=@LD@ |
|
CFLAGS=@CFLAGS@ |
|
CPPFLAGS=-I. -I.. -I$(srcdir) -I$(srcdir)/.. @CPPFLAGS@ @DEFS@ |
|
LIBS=@LIBS@ |
|
AR=@AR@ |
|
RANLIB=@RANLIB@ |
|
INSTALL=@INSTALL@ |
|
LDFLAGS=-L. @LDFLAGS@ |
|
|
|
OPENBSD=base64.o basename.o bcrypt_pbkdf.o bindresvport.o blowfish.o daemon.o dirname.o fmt_scaled.o getcwd.o getgrouplist.o getopt_long.o getrrsetbyname.o glob.o inet_aton.o inet_ntoa.o inet_ntop.o mktemp.o pwcache.o readpassphrase.o reallocarray.o realpath.o rresvport.o setenv.o setproctitle.o sha1.o sha2.o rmd160.o md5.o sigact.o strcasestr.o strlcat.o strlcpy.o strmode.o strnlen.o strptime.o strsep.o strtonum.o strtoll.o strtoul.o strtoull.o timingsafe_bcmp.o vis.o blowfish.o bcrypt_pbkdf.o explicit_bzero.o |
|
|
|
COMPAT=arc4random.o bsd-asprintf.o bsd-closefrom.o bsd-cray.o bsd-cygwin_util.o bsd-getpeereid.o getrrsetbyname-ldns.o bsd-err.o bsd-misc.o bsd-nextstep.o bsd-openpty.o bsd-poll.o bsd-setres_id.o bsd-snprintf.o bsd-statvfs.o bsd-waitpid.o fake-rfc2553.o openssl-compat.o xcrypt.o kludge-fd_set.o |
|
|
|
PORTS=port-aix.o port-irix.o port-linux.o port-solaris.o port-tun.o port-uw.o |
|
|
|
.c.o: |
|
$(CC) $(CFLAGS) $(CPPFLAGS) -c $< |
|
|
|
all: libopenbsd-compat.a |
|
|
|
$(COMPAT): ../config.h |
|
$(OPENBSD): ../config.h |
|
$(PORTS): ../config.h |
|
|
|
libopenbsd-compat.a: $(COMPAT) $(OPENBSD) $(PORTS) |
|
$(AR) rv $@ $(COMPAT) $(OPENBSD) $(PORTS) |
|
$(RANLIB) $@ |
|
|
|
clean: |
|
rm -f *.o *.a core |
|
|
|
distclean: clean |
|
rm -f Makefile *~
|
|
|