]> git.wh0rd.org - dump.git/blame_incremental - rmt/Makefile.in
Remove -lselinux -lsepol from standard libs list.
[dump.git] / rmt / Makefile.in
... / ...
CommitLineData
1# $Id: Makefile.in,v 1.10 2003/05/08 21:11:39 stelian Exp $
2
3top_srcdir= @top_srcdir@
4srcdir= @srcdir@
5top_builddir= ..
6
7@MCONFIG@
8
9ALL_CFLAGS= @CPPFLAGS@ @CFLAGS@ @CCOPTS@ -pipe $(OPT) $(GINC) $(INC) $(DEFS)
10ALL_LDFLAGS= @LDFLAGS@ @LDOPTS@ @STATIC@
11LIBS= $(GLIBS)
12DEPLIBS= ../compat/lib/libcompat.a
13
14PROG= rmt
15SRCS= rmt.c
16OBJS= rmt.o
17MAN8= rmt.8
18
19.c.o:
20 $(CC) -c $(ALL_CFLAGS) $< -o $@
21
22all:: $(PROG) @ERMT@ $(MAN8)
23
24$(PROG): $(OBJS) $(DEPLIBS)
25 $(LD) $(ALL_LDFLAGS) -o $(PROG) $(OBJS) $(LIBS)
26
27ermt: ermt.o cipher.o $(DEPLIBS)
28 $(LD) $(ALL_LDFLAGS) -o ermt ermt.o cipher.o $(LIBS) @CRYPTO@
29
30ermt.o: rmt.c
31 $(CC) -c $(ALL_CFLAGS) -DERMT -o ermt.o rmt.c
32
33$(MAN8): rmt.8.in
34 sed -e "s|__DATE__|$(DATE)|g" \
35 -e "s|__VERSION__|$(VERSION)|g" $< > $@
36
37install:: all
38 $(INSTALL) -d $(SBINDIR) $(MANDIR)
39 $(INSTALLBIN) $(PROG) $(SBINDIR)
40 $(INSTALLMAN) $(srcdir)/$(MAN8) $(MANDIR)
41
42clean::
43 rm -f $(PROG) @ERMT@ \#* *.s *.o *.a *~ core rmt.8
44
45distclean:: clean
46 rm -f Makefile Makefile.old .depend
47
48# +++ Dependency line eater +++
49#
50# Makefile dependencies follow. This must be the last section in
51# the Makefile.in file
52#
53