Deleted Added
full compact
Makefile.in (92907) Makefile.in (243933)
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>.

--- 8 unchanged lines hidden (view full) ---

17
18CC=@CC@
19CFLAGS=$(CFL) -I.. -I.
20TARGET=libmissing.a
21
22all: $(TARGET)
23
24$(TARGET): $(OBJS)
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>.

--- 8 unchanged lines hidden (view full) ---

17
18CC=@CC@
19CFLAGS=$(CFL) -I.. -I.
20TARGET=libmissing.a
21
22all: $(TARGET)
23
24$(TARGET): $(OBJS)
25 ar cr $(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
26 @RANLIB@ $(TARGET)
27
28clean:
29 -rm -f $(OBJS) $(TARGET)
30
31realclean: distclean
32
33distclean: clean
34 -rm -f *~ core* "\#*\#" *.o *.a Makefile