Makefile.in revision 162852
11573Srgrimes# $Id: Makefile.in,v 1.40 2006/08/30 17:24:41 djm Exp $
21573Srgrimes
31573Srgrimessysconfdir=@sysconfdir@
41573Srgrimespiddir=@piddir@
51573Srgrimessrcdir=@srcdir@
61573Srgrimestop_srcdir=@top_srcdir@
71573Srgrimes
81573SrgrimesVPATH=@srcdir@
91573SrgrimesCC=@CC@
101573SrgrimesLD=@LD@
111573SrgrimesCFLAGS=@CFLAGS@
121573SrgrimesCPPFLAGS=-I. -I.. -I$(srcdir) -I$(srcdir)/.. @CPPFLAGS@ @DEFS@
131573SrgrimesLIBS=@LIBS@
141573SrgrimesAR=@AR@
151573SrgrimesRANLIB=@RANLIB@
161573SrgrimesINSTALL=@INSTALL@
171573SrgrimesLDFLAGS=-L. @LDFLAGS@
181573Srgrimes
191573SrgrimesOPENBSD=base64.o basename.o bindresvport.o daemon.o dirname.o getcwd.o getgrouplist.o getopt.o getrrsetbyname.o glob.o inet_aton.o inet_ntoa.o inet_ntop.o mktemp.o readpassphrase.o realpath.o rresvport.o setenv.o setproctitle.o sha2.o sigact.o strlcat.o strlcpy.o strmode.o strsep.o strtonum.o strtoll.o strtoul.o vis.o
201573Srgrimes
211573SrgrimesCOMPAT=bsd-arc4random.o bsd-asprintf.o bsd-closefrom.o bsd-cray.o bsd-cygwin_util.o bsd-getpeereid.o bsd-misc.o bsd-nextstep.o bsd-openpty.o bsd-snprintf.o bsd-waitpid.o fake-rfc2553.o openssl-compat.o xmmap.o xcrypt.o
221573Srgrimes
231573SrgrimesPORTS=port-aix.o port-irix.o port-linux.o port-solaris.o port-tun.o port-uw.o
241573Srgrimes
251573Srgrimes.c.o:
261573Srgrimes	$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
271573Srgrimes
281573Srgrimesall: libopenbsd-compat.a
291573Srgrimes
301573Srgrimes$(COMPAT): ../config.h
311573Srgrimes$(OPENBSD): ../config.h
321573Srgrimes$(PORTS): ../config.h
3390045Sobrien
3490045Sobrienlibopenbsd-compat.a:  $(COMPAT) $(OPENBSD) $(PORTS)
351573Srgrimes	$(AR) rv $@ $(COMPAT) $(OPENBSD) $(PORTS)
3671579Sdeischen	$(RANLIB) $@
3742232Sbde
3842232Sbdeclean:
3942232Sbde	rm -f *.o *.a core 
4042232Sbde
411573Srgrimesdistclean: clean
421573Srgrimes	rm -f Makefile *~
4342232Sbde