summaryrefslogtreecommitdiff
path: root/src/cmd/INIT/CONVERT.mk
blob: 63a60ef5f503c81ea9ca64175b7765bb10336c67 (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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
 * {automake|configure} => {nmake|iffe} conversion support
 *
 * The first command line target overrides the default original source
 * directory name $(MAKEFILE:D). The hard work is in the makefile using
 * these assertions, since it must (manually) provide the nmake makefiles
 * and config equivalent iffe scripts. The conversion makefile is typically
 * named lib/package/PACKAGE.cvt in an ast package $PACKAGEROOT directory,
 * and the conversion is run from the $PACKAGEROOT directory, e.g.:
 *
 *	nmake -I lib/package -f PACKAGE-VERSION/PACKAGE.cvt
 *
 * The conversion requires the ast nmake, pax and tw commands.
 *
 * After the conversion you will be liberated from ./configure, *.in,
 * *.am, automake, autom4te, libtool, make depend, and makefile
 * recursion ordering. You can build from $PACKAGEROOT using the ast
 * package(1) (which sets up the { HOSTTYPE PATH VPATH } environment):
 *
 *	package make
 *
 * or cd into any arch/$HOSTTYPE/src subdirectory and rebuild that portion
 * of the hierarchy with the ast nmake(1) (after setting PATH and VPATH):
 *
 *	nmake
 *
 * The conversion assertions are:
 *
 *	package :CONVERT: file ...
 *
 *	    files in the original source directory are copied
 *	    and converted into the ./src and ./lib subdirectories 
 *	    the default original source directory is ./original
 *
 *		package	package name
 *		file	original source file that must exist
 *
 *	:OMIT: pattern
 *
 *	    files matching pattern are not copied into the converted
 *	    directory
 *
 *		pattern	ksh pattern of files to omit
 *
 *	:COPY: from to [ file ... ]
 *
 *	    files in the from directory are copied to the to directory
 *	    the action may contain :MOVE: exceptions to the copy
 *
 *		from	original directory subdirectory
 *			  . names the original directory
 *			 .. names the 
 *		to	converted subdirectory
 *			  libNAME => src/lib/libNAME
 *			     NAME => src/cmd/NAME
 *		file	files or files in subdirectories to be copied;
 *			explicit files are copied to the to directory;
 *			if no files are specified then the from hierarchy
 *			is recursively copied to the converted directory
 *
 *	:MOVE: to file ...
 *
 *	    :COPY: assertion exceptions placed in the assertion's action
 *
 *		to	files or subdirectory files are copied to this directory
 *		file	file or files in subdirectories to be copied
 *
 *	:FILE: to file <<!
 *	contents
 *	!
 *
 *	    the :FILE: action is copied to the named file in the to directory
 *	    the :FILE: action is usually specified using the here syntax to
 *	    avoid make comment, quote and variable expansion
 *
 *	:EDIT: to file ... | - pattern <<!
 *	edit script
 *	!
 *
 *	    the :EDIT: action is an ed(1) script applied to each file in the
 *	    to directory after it has been copied from the original source
 *	    directory; if to is - then the :EDIT: action is a sed(1) script
 *	    that is applied to all files matching the file pattern during the
 *	    copy from the original source directory; a file may be subject to
 *	    both a sed(1) and ed(1) :EDIT:; the :EDIT: action is usually
 *	    specified using the here syntax to avoid make comment, quote and
 *	    variable expansion
 */

.CONVERT.ID. = "@(#)$Id: CONVERT (AT&T Research) 2004-03-19 $"

set nojobs noscan nowriteobject writestate=$$(MAKEFILE).ms

package = $(PWD:B)
here = !-=-=-=-=-!
hierarchy = src src/cmd src/lib
omit = .*|*.?(l)[ao]
original = $(MAKEFILE:D)
showedit = $(-debug:?p??)

CPFLAGS = -u
PAXFLAGS = -u -v
STDEDFLAGS = -
TW = tw
TWFLAGS = -CP

all  : .VIRTUAL file
file : .VIRTUAL edit
edit : .VIRTUAL copy
copy : .VIRTUAL init
init : .VIRTUAL

.MAKEINIT : .cvt.init

.cvt.init : .MAKE .VIRTUAL .FORCE
	local D
	if D = "$(~.ARGS:O=1)"
		if "$(D:T>FD)"
			original := $(D)
			.ARGS : .CLEAR $(~.ARGS:O>1)
		end
	end

.cvt.filter =
.cvt.package =

.cvt.atom : .FUNCTION
	local N V
	V := $(%:O=1)
	let .cvt.$(V) = .cvt.$(V) + 1
	return .cvt.$(V).$(.cvt.$(V))

.cvt.omit : .FUNCTION
	return -s',^\(\(?K)?(*/)($(omit))?(/*))$,,$(showedit)'

.cvt.to : .FUNCTION
	if "$(%)" == "."
		return src
	end
	if "$(%)" == "*/*"
		return src/$(%)
	end
	if "$(%)" == "lib*"
		return src/lib/$(%)
	end
	return src/cmd/$(%)

":CONVERT:" : .MAKE .OPERATOR
	local I
	package := $(<)
	I := $(hierarchy:C,$,/Makefile)
	init : .cvt.verify $(I)
	$(I) : .ACCEPT
		test -d $(<:D) || $(MKDIR) -p $(<:D)
		echo :MAKE: > $(<)
	.cvt.verify : .MAKE .FORCE .REPEAT
		local I
		if I = "$(.cvt.package:T!=F)"
			error 3 $(original): not a $(package) source directory: missing $(I)
		end
	.cvt.package := $(>:C,^,$$(original)/,)

":COPY:" : .MAKE .OPERATOR
	local F T I A
	F := $(>:O=1)
	T := $(.cvt.to $(>:O=2))
	A := $(.cvt.atom copy)
	copy : $(A)
	$(A) : .VIRTUAL
	if F == "."
		$(A) : $(T)
		$(T) :
			test -d $(<) || $(MKDIR) -p $(<)
		for I $(>:O>2)
			eval
			$$(A) : $(I:D=$(T):B:S)
			$(I:D=$(T):B:S) : $$(original)/$(I)
				$$(CP) $$(CPFLAGS) $$(*) $$(<)
			end
		end
	elif "$(F:T=FF)" || "$(F:N=*.(pax|t[bg]z))"
		eval
		$$(A) : $$(F)
			test -d $(T) || $$(MKDIR) -p $(T)
			cd $(T)
			$$(PAX) $$(PAXFLAGS) -rf $$(*:P=A) -s ',^$(>:O=2)/*,,' $(.cvt.omit) $(.cvt.filter)
		end
	else
		F := $$(original)/$(F)
		if ! "$(@:V)"
			eval
			$$(A) : .FORCE
				test -d $(T) || $$(MKDIR) -p $(T)
				cd $(F:V)
				$$(TW) $$(TWFLAGS) | $$(PAX) $$(PAXFLAGS) -rw $(.cvt.omit) $(.cvt.filter) $(T:P=A)
			end
		else
			.cvt.move =
			: $(@:V:@R)
			eval
			$$(A) : .FORCE
				test -d $(T) || $$(MKDIR) -p $(T)
				cd $(F:V)
				$$(TW) $$(TWFLAGS) | $$(PAX) $$(PAXFLAGS) -rw $(.cvt.omit) $(.cvt.move) $(.cvt.filter) $(T:P=A)
			end
		end
	end

":EDIT:" : .MAKE .OPERATOR
	local A D F
	D := $(>:O=1)
	if D == "-"
		A := ^$(>:O=2)^$$(SED) -e $(@:Q:/'\n'/ -e /G)
		.cvt.filter += --action=$(A:@Q)
	else
		D := $(.cvt.to $(D))
		F := $(>:O>1:C,^,$(D)/,)
		edit : $(F)
		eval
		$$(F) :
			$$(STDED) $$(STDEDFLAGS) $$(<) <<'$(here)'
			$(@:V)
			w
			q
			$(here)
		end
	end

":FILE:" : .MAKE .OPERATOR
	local ( D F ) $(>)
	local A
	A := $(.cvt.atom file)
	$(A) := $(@:V)
	D := $(.cvt.to $(D))
	file : $(D)/$(F)
	eval
	$$(D)/$$(F) :
		test -d $$(<:D) || $$(MKDIR) -p $$(<:D)
		cat > $$(<) <<'$(here)'
		$$($(A):V)
		$(here)
	end

":MOVE:" : .MAKE .OPERATOR
	local T I
	T := ../../../$(.cvt.to $(>:O=1))
	for I $(>:O>1)
		if I == "*/"
			.cvt.move += -s',^\(\(?K)$(I)),$(T)/,$(showedit)'
			.cvt.move += -s',^\(\(?K)$(I:C%/$%%))$,,$(showedit)'
		else
			.cvt.move += -s',^\(\(?K)$(I))$,$(T)/$(I:B:S),$(showedit)'
		end
	end

":OMIT:" : .MAKE .OPERATOR
	local P
	for P $(>)
		omit := $(omit)|$(P)
	end