]> git.wh0rd.org - dump.git/blob - compat/lib/Makefile.in
Prepare for 0.4b42 release
[dump.git] / compat / lib / Makefile.in
1 # $Id: Makefile.in,v 1.10 2003/05/08 21:11:39 stelian Exp $
2
3 top_srcdir= @top_srcdir@
4 srcdir= @srcdir@
5 top_builddir= ../..
6
7 @MCONFIG@
8
9 INC= -I$(top_srcdir)/compat/include
10 ALL_CFLAGS= @CPPFLAGS@ @CFLAGS@ @CCOPTS@ -pipe $(OPT) $(GINC) $(INC) $(DEFS)
11 SRCS= compaterr.c compatglob.c bylabel.c system.c rmtflags.c minilzo.c
12 OBJS= compaterr.o compatglob.o bylabel.o system.o rmtflags.o minilzo.o
13 LIB= libcompat.a
14
15 .c.o:
16 $(CC) -c $(ALL_CFLAGS) $< -o $@
17
18 all:: $(LIB)
19
20 $(LIB): $(OBJS)
21 $(AR) r $(LIB) $(OBJS)
22 $(RANLIB) $(LIB)
23
24 install::
25
26 clean::
27 $(RM) -f \#* *.s *.o *.a *~ core
28
29 distclean:: clean
30 $(RM) -f Makefile Makefile.old .depend
31
32 # +++ Dependency line eater +++
33 #
34 # Makefile dependencies follow. This must be the last section in
35 # the Makefile.in file
36 #
37