|
Lines 1-25
Link Here
|
| 1 |
|
1 |
|
| 2 |
$(outdir)/%: %.pl $(config_make) $(depth)/VERSION |
2 |
$(outdir)/%: %.pl $(config_make) $(depth)/VERSION |
| 3 |
cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@ |
3 |
cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@ |
| 4 |
chmod 755 $@ |
4 |
chmod 755 $@ |
| 5 |
|
5 |
|
| 6 |
$(outdir)/%: %.bash $(config_make) $(depth)/VERSION |
6 |
$(outdir)/%: %.bash $(config_make) $(depth)/VERSION |
| 7 |
cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@ |
7 |
cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@ |
| 8 |
chmod 755 $@ |
8 |
chmod 755 $@ |
| 9 |
|
9 |
|
| 10 |
$(outdir)/%: %.scm $(config_make) $(depth)/VERSION |
10 |
$(outdir)/%: %.scm $(config_make) $(depth)/VERSION |
| 11 |
cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@ |
11 |
cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@ |
| 12 |
chmod 755 $@ |
12 |
chmod 755 $@ |
| 13 |
|
13 |
|
| 14 |
$(outdir)/%: %.expect $(config_make) $(depth)/VERSION |
14 |
$(outdir)/%: %.expect $(config_make) $(depth)/VERSION |
| 15 |
cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@ |
15 |
cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@ |
| 16 |
chmod 755 $@ |
16 |
chmod 755 $@ |
| 17 |
|
17 |
|
| 18 |
$(outdir)/%: %.sh $(config_make) $(depth)/VERSION |
18 |
$(outdir)/%: %.sh $(config_make) $(depth)/VERSION |
| 19 |
cat $< | sed $(sed-atfiles)$(sed-atvariables) > $@ |
19 |
cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@ |
| 20 |
chmod 755 $@ |
20 |
chmod 755 $@ |
| 21 |
|
21 |
|
| 22 |
$(outdir)/%: %.py $(config_make) $(depth)/VERSION |
22 |
$(outdir)/%: %.py $(config_make) $(depth)/VERSION |
| 23 |
cat $< | sed $(sed-atfiles) $(sed-atvariables) > $@ |
23 |
cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@ |
| 24 |
chmod 755 $@ |
24 |
chmod 755 $@ |
| 25 |
|
25 |
|