122347Spst##
222347Spst# Makefile.in/Makefile: Directions for building libmissing.
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.
722347Spst# You should have received a copy of the license with this software. If
822347Spst# 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 current dir to include header path.
1392906Smarkm#		Use ar 'cr' instead of 'r'. Renamed realclean to distclean.
1422347Spst#       Created by cmetz for OPIE 2.3 using old Makefiles as a guide.
1522347Spst
1622347SpstOBJS=bogus.o @MISSING@
1722347Spst
1822347SpstCC=@CC@
1992906SmarkmCFLAGS=$(CFL) -I.. -I.
2022347SpstTARGET=libmissing.a
2122347Spst
2222347Spstall: $(TARGET)
2322347Spst
2422347Spst$(TARGET): $(OBJS)
25243933Seadler	@AR@ @ARFLAGS@ $(TARGET) $(OBJS)
2622347Spst	@RANLIB@ $(TARGET)
2722347Spst
2822347Spstclean:
2922347Spst	-rm -f $(OBJS) $(TARGET)
3022347Spst
3192906Smarkmrealclean: distclean
3292906Smarkm
3392906Smarkmdistclean: clean
3422347Spst	-rm -f *~ core* "\#*\#" *.o *.a Makefile
35