]> diplodocus.org Git - nmh/blob - mts/mmdf/Makefile.in
Just reworded the bit about '%s' being safe not to quote (it's only safe not to
[nmh] / mts / mmdf / Makefile.in
1 #
2 # Makefile for mts/mmdf subdirectory
3 #
4 # $Id$
5 #
6
7 SHELL = /bin/sh
8
9 srcdir = @srcdir@
10 VPATH = @srcdir@
11
12 prefix = @prefix@
13 exec_prefix = @exec_prefix@
14 bindir = @bindir@
15 libdir = @libdir@
16 etcdir = @sysconfdir@
17
18 .SUFFIXES:
19
20 # source files
21 SRC = hosts.c
22
23 # auxiliary files
24 AUX = Makefile.in
25
26 # all files in this directory included in the distribution
27 DIST = $(SRC) $(AUX)
28
29 # ========= DEPENDENCIES FOR BUILDING ==========
30
31 all:
32
33 install:
34
35 uninstall:
36
37 # ========== DEPENDENCIES FOR CLEANUP ==========
38
39 mostlyclean:
40 rm -f *~
41
42 clean: mostlyclean
43
44 distclean: clean
45 rm -f Makefile
46
47 realclean: distclean
48
49 superclean: realclean
50
51 # ========== DEPENDENCIES FOR MAINTENANCE ==========
52
53 subdir = mts/mmdf
54
55 Makefile: Makefile.in ../../config.status
56 cd ../.. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
57
58 distdir = ../../`cat ../../distname`/$(subdir)
59 nmhdist: $(DIST)
60 @echo "Copying distribution files in $(subdir)"
61 @for file in $(DIST); do \
62 cp -p $(srcdir)/$$file $(distdir); \
63 done
64