xref: /original-bsd/usr.sbin/sendmail/cf/cf/Makefile (revision 4b441568)
1#	@(#)Makefile	8.3 (Berkeley) 08/25/93
2
3M4=	m4
4#M4=	/usr/src/usr.bin/m4/obj/m4
5CHMOD=	chmod
6ROMODE=	444
7RM=	rm -f
8
9.SUFFIXES:  .mc .cf
10
11.mc.cf:
12	$(RM) $@
13	(cd ${.CURDIR} && $(M4) ${@:R}.mc > obj/$@)
14	$(CHMOD) $(ROMODE) $@
15
16ALL=	cs-hidden.cf cs-exposed.cf \
17	hpux-cs-exposed.cf hpux-cs-hidden.cf \
18	sunos3.5-cs-exposed.cf sunos3.5-cs-hidden.cf \
19	sunos4.1-cs-exposed.cf sunos4.1-cs-hidden.cf \
20	ultrix4.1-cs-exposed.cf ultrix4.1-cs-hidden.cf \
21	mail.cs.cf mail.eecs.cf ucbvax.cf vangogh.cf \
22	chez.cf knecht.cf cogsci.cf alpha.cf s2k.cf auspex.cf \
23	python.cf \
24	clientproto.cf tcpproto.cf uucpproto.cf
25
26all: $(ALL)
27
28clean cleandir:
29	$(RM) $(ALL) core
30
31depend install:
32
33# this is overkill, but....
34M4FILES=\
35	../domain/Berkeley.m4 \
36	../domain/cs.exposed.m4 \
37	../domain/cs.hidden.m4 \
38	../domain/eecs.hidden.m4 \
39	../domain/s2k.m4 \
40	../feature/allmasquerade.m4 \
41	../feature/always_add_domain.m4 \
42	../feature/bitdomain.m4 \
43	../feature/domaintable.m4 \
44	../feature/mailertable.m4 \
45	../feature/nocanonify.m4 \
46	../feature/nodns.m4 \
47	../feature/notsticky.m4 \
48	../feature/nouucp.m4 \
49	../feature/nullclient.m4 \
50	../feature/redirect.m4 \
51	../feature/use_cw_file.m4 \
52	../feature/uucpdomain.m4 \
53	../hack/cssubdomain.m4 \
54	../m4/cf.m4 \
55	../m4/nullrelay.m4 \
56	../m4/proto.m4 \
57	../m4/version.m4 \
58	../mailer/fax.m4 \
59	../mailer/local.m4 \
60	../mailer/smtp.m4 \
61	../mailer/usenet.m4 \
62	../mailer/uucp.m4 \
63	../ostype/aix3.m4 \
64	../ostype/bsd4.3.m4 \
65	../ostype/bsd4.4.m4 \
66	../ostype/hpux.m4 \
67	../ostype/irix.m4 \
68	../ostype/linux.m4 \
69	../ostype/nextstep.m4 \
70	../ostype/osf1.m4 \
71	../ostype/riscos4.5.m4 \
72	../ostype/solaris2.m4 \
73	../ostype/sunos3.5.m4 \
74	../ostype/sunos4.1.m4 \
75	../ostype/svr4.m4 \
76	../ostype/ultrix4.1.m4 \
77	../siteconfig/uucp.cogsci.m4 \
78	../siteconfig/uucp.old.arpa.m4 \
79	../siteconfig/uucp.ucbarpa.m4 \
80	../siteconfig/uucp.ucbvax.m4 \
81
82$(ALL):  $(M4FILES)
83
84.include <bsd.prog.mk>
85