Makefile.in revision 59118
1##
2# Makefile.in/Makefile: Directions for building libmissing.
3#
4# %%% copyright-cmetz-96
5# This software is Copyright 1996-1998 by Craig Metz, All Rights Reserved.
6# The Inner Net License Version 2 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#       Created by cmetz for OPIE 2.3 using old Makefiles as a guide.
13
14OBJS=bogus.o @MISSING@
15
16CC=@CC@
17CFLAGS=$(CFL) -I..
18TARGET=libmissing.a
19
20all: $(TARGET)
21
22$(TARGET): $(OBJS)
23	ar r $(TARGET) $(OBJS)
24	@RANLIB@ $(TARGET)
25
26clean:
27	-rm -f $(OBJS) $(TARGET)
28
29realclean: clean
30	-rm -f *~ core* "\#*\#" *.o *.a Makefile
31