File: Makefile.in

package info (click to toggle)
nmh 1.0.2-9
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,172 kB
  • ctags: 4,449
  • sloc: ansic: 50,696; sh: 1,799; makefile: 1,192; awk: 74; sed: 17
file content (59 lines) | stat: -rw-r--r-- 1,163 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Makefile for h subdirectory
#
# $Id: Makefile.in,v 1.1.1.1 1999/04/30 18:08:34 doug Exp $
#

SHELL = /bin/sh

srcdir = @srcdir@
VPATH  = @srcdir@

# header files included in distribution
HDRS = addrsbr.h aliasbr.h dropsbr.h fmt_compile.h fmt_scan.h \
       md5.h mh.h mhcachesbr.h mhparse.h mime.h msh.h netdb.h nmh.h \
       nntp.h picksbr.h popsbr.h prototypes.h rcvmail.h scansbr.h \
       signals.h vmhsbr.h

# auxiliary files
AUX = Makefile.in

# all files in this directory included in the distribution
DIST = $(HDRS) $(AUX)

# ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========

all:

install:

uninstall:

# ========== DEPENDENCIES FOR CLEANUP ==========

mostlyclean:
	rm -f *~

clean: mostlyclean

distclean: clean
	rm -f Makefile

realclean: distclean

superclean: realclean

# ========== DEPENDENCIES FOR MAINTENANCE ==========

subdir = h

Makefile: Makefile.in ../config.status
	cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
 
distdir = ../`cat ../distname`/$(subdir)
nmhdist: $(DIST)
	@echo "Copying distribution files in $(subdir)"
	@for file in $(DIST); do \
	  cp -p $(srcdir)/$$file $(distdir); \
	done