1##
2# Makefile.in/Makefile: Directions for building libmissing.
3#
4# %%% copyright-cmetz-96
5# This software is Copyright 1996-2001 by Craig Metz, All Rights Reserved.
6# The Inner Net License Version 3 applies to this software.
7# You should have received a copy of the license with this software. If
8# you didn't get a copy, you may request one from <license@inner.net>.
9#
10#	History:
11#
12#	Modified by cmetz for OPIE 2.4. Add current dir to include header path.
13#		Use ar 'cr' instead of 'r'. Renamed realclean to distclean.
14#       Created by cmetz for OPIE 2.3 using old Makefiles as a guide.
15
16OBJS=bogus.o @MISSING@
17
18CC=@CC@
19CFLAGS=$(CFL) -I.. -I.
20TARGET=libmissing.a
21
22all: $(TARGET)
23
24$(TARGET): $(OBJS)
25	@AR@ @ARFLAGS@ $(TARGET) $(OBJS)
26	@RANLIB@ $(TARGET)
27
28clean:
29	-rm -f $(OBJS) $(TARGET)
30
31realclean: distclean
32
33distclean: clean
34	-rm -f *~ core* "\#*\#" *.o *.a Makefile
35