1 #
2 # CDDL HEADER START
3 #
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
7 #
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
22 # Use is subject to license terms.
23 #
24
25 # cmd/sendmail/aux/Makefile
26 #
27 include ../../Makefile.cmd
28 include ../Makefile.cmd
29
30 PROG= mailstats mconnect vacation mailcompat praliases
31
32 LIBPROG= mail.local smrsh
33
34 USRSBINPROG= etrn makemap editmap
35
36 LIBSMTPSMPROG= mailq
37
38 # $(PROG) by default
39 CLOBBERFILES= $(LIBPROG) $(USRSBINPROG) $(LIBSMTPSMPROG)
40
41 OBJS= $(PROG:%=%.o)
42
43 .PARALLEL: $(OBJS) $(PROG) $(LIBPROG) $(USRSBINPROG)
44
45 SRCS= $(PROG:%=%.c)
46
47 editmap := LDLIBS += -lldap
48 mail.local := LDLIBS += -lsocket -lnsl -lmail -lldap
49 mailq := LDLIBS += -lsecdb
50 mailstats := LDLIBS += -lldap
51 makemap := LDLIBS += -lldap
52 mconnect := LDLIBS += -lsocket -lnsl
53 praliases := LDLIBS += -lldap
54 smrsh := LDLIBS += -lldap
55 vacation := LDLIBS += -lldap
56 $(ROOTLIBSMTPSM)/mailq := FILEMODE = 4555
57
58 INCPATH= -I../src -I../db -I../include
59
60 ENVDEF= -DNOT_SENDMAIL
61 SUNENVDEF= -DSUN_EXTENSIONS -DUSE_VENDOR_CF_PATH
62 DBMDEF= -DNDBM -DNEWDB
63
64 CPPFLAGS = $(INCPATH) $(ENVDEF) $(SUNENVDEF) $(DBMDEF) $(CPPFLAGS.sm)
65
66 # Nearly every support application provides sleep(). This isn't incompatible
67 # with libc, but can be confined to the applications themselves.
68 LDFLAGS += $(MAPFILE.NGB:%=-M%)
69
70 .KEEP_STATE:
71
72 all: $(PROG) $(LIBSMTPSMPROG) $(LIBPROG) $(USRSBINPROG)
73
74 convtime.o: ../src/convtime.c
75 $(COMPILE.c) ../src/convtime.c
76 $(POST_PROCESS_O)
77
|
1 #
2 # CDDL HEADER START
3 #
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
7 #
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21 # Copyright 2017 Gary Mills
22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25
26 # cmd/sendmail/aux/Makefile
27 #
28 include ../../Makefile.cmd
29 include ../Makefile.cmd
30
31 PROG= mailstats mconnect vacation mailcompat praliases
32
33 LIBPROG= mail.local smrsh
34
35 USRSBINPROG= etrn makemap editmap
36
37 LIBSMTPSMPROG= mailq
38
39 # $(PROG) by default
40 CLOBBERFILES= $(LIBPROG) $(USRSBINPROG) $(LIBSMTPSMPROG)
41
42 OBJS= $(PROG:%=%.o)
43
44 .PARALLEL: $(OBJS) $(PROG) $(LIBPROG) $(USRSBINPROG)
45
46 SRCS= $(PROG:%=%.c)
47
48 editmap := LDLIBS += -lldap
49 mail.local := LDLIBS += -lsocket -lnsl -lmail -lldap
50 mailq := LDLIBS += -lsecdb
51 mailstats := LDLIBS += -lldap
52 makemap := LDLIBS += -lldap
53 mconnect := LDLIBS += -lsocket -lnsl
54 praliases := LDLIBS += -lldap
55 smrsh := LDLIBS += -lldap
56 vacation := LDLIBS += -lldap
57 $(ROOTLIBSMTPSM)/mailq := FILEMODE = 4555
58
59 # Suppress the error for: verbose
60 editmap.o := CERRWARN += -_gcc=-Wno-unused-but-set-variable
61
62 INCPATH= -I../src -I../db -I../include
63
64 ENVDEF= -DNOT_SENDMAIL
65 SUNENVDEF= -DSUN_EXTENSIONS -DUSE_VENDOR_CF_PATH
66 DBMDEF= -DNDBM -DNEWDB
67
68 CPPFLAGS = $(INCPATH) $(ENVDEF) $(SUNENVDEF) $(DBMDEF) $(CPPFLAGS.sm)
69
70 # Nearly every support application provides sleep(). This isn't incompatible
71 # with libc, but can be confined to the applications themselves.
72 LDFLAGS += $(MAPFILE.NGB:%=-M%)
73
74 .KEEP_STATE:
75
76 all: $(PROG) $(LIBSMTPSMPROG) $(LIBPROG) $(USRSBINPROG)
77
78 convtime.o: ../src/convtime.c
79 $(COMPILE.c) ../src/convtime.c
80 $(POST_PROCESS_O)
81
|