blob: 0c660e1889886447fb1e7592addf88430522dc6f (
plain)
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
|
$NetBSD: patch-au,v 1.1 1999/05/30 18:18:32 tron Exp $
--- postconf/Makefile.orig Sun May 30 18:49:13 1999
+++ postconf/Makefile Sun May 30 18:49:13 1999
@@ -0,0 +1,27 @@
+# $NetBSD: patch-au,v 1.1 1999/05/30 18:18:32 tron Exp $
+.include "../conf/main.cf"
+PROG= postconf
+BINDIR=${command_directory}
+
+PSRCS= postconf.c
+GENSRCS=bool_table.h bool_vars.h int_table.h int_vars.h str_table.h \
+ str_vars.h
+SRCS= ${PSRCS} ${GENSRCS}
+
+CLEANFILES+= ${GENSRCS}
+
+CPPFLAGS+= -I${.OBJDIR}
+
+DPADD+= ${LIBPGLOBAL} ${LIBPUTIL}
+LDADD+= ${LIBPGLOBAL} ${LIBPUTIL}
+
+# XXX
+NOMAN=1
+
+${GENSRCS}: ${.CURDIR}/../global/mail_params.h
+ sh ${.CURDIR}/extract.sh ${.CURDIR}/../*/*.c
+
+# XXX
+${PSRCS}: ${GENSRCS}
+
+.include <bsd.prog.mk>
|