122347Spst##
222347Spst# Makefile.in/Makefile: Directions for building libopie.
322347Spst#
429964Sache# %%% copyright-cmetz-96
592906Smarkm# This software is Copyright 1996-2001 by Craig Metz, All Rights Reserved.
692906Smarkm# The Inner Net License Version 3 applies to this software.
729964Sache# You should have received a copy of the license with this software. If
829964Sache# you didn't get a copy, you may request one from <license@inner.net>.
922347Spst#
1022347Spst#	History:
1122347Spst#
1292906Smarkm#	Modified by cmetz for OPIE 2.4. Add libmissing to include header path.
1392906Smarkm#		Use ar 'cr' instead of 'r'. Renamed realclean to distclean.
1429964Sache#	Modified by cmetz for OPIE 2.31. Added logwtmp.o
1522347Spst#       Created by cmetz for OPIE 2.3 using old Makefiles as a guide.
1622347Spst
1729964SacheOBJS=md4c.o md5c.o atob8.o btoa8.o btoh.o challenge.o getsequence.o hash.o hashlen.o keycrunch.o lock.o lookup.o newseed.o parsechallenge.o passcheck.o passwd.o randomchallenge.o readpass.o unlock.o verify.o version.o btoe.o accessfile.o generator.o insecure.o getutmpentry.o readrec.o writerec.o login.o open.o logwtmp.o # sha.o
1822347Spst
1922347SpstCC=@CC@
2092906SmarkmCFLAGS=$(CFL) -I.. -I../libmissing
2122347SpstTARGET=libopie.a
2222347Spst
2322347Spstall: $(TARGET)
2422347Spst
2522347Spst$(TARGET): $(OBJS)
26243933Seadler	@AR@ @ARFLAGS@ $(TARGET) $(OBJS)
2722347Spst	@RANLIB@ $(TARGET)
2822347Spst
2922347Spstclean:
3022347Spst	-rm -f $(OBJS) $(TARGET)
3122347Spst
3292906Smarkmrealclean: distclean
3392906Smarkm
3492906Smarkmdistclean: clean
3522347Spst	-rm -f *~ core* "\#*\#" *.o *.a Makefile
36