blob: b866e30ee5866231ea0a2244399e9d6a7f272f49 (
plain) (
blame)
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
|
--- Makefile.orig 1999-11-09 08:23:46.000000000 +0100
+++ Makefile 2014-08-21 12:29:41.000000000 +0200
@@ -32,6 +32,14 @@
compile auto_home.c
./compile auto_home.c
+auto_home_stage.c: \
+auto-str conf-stage
+ ./auto-str auto_home `head -1 conf-stage` > auto_home_stage.c
+
+auto_home_stage.o: \
+compile auto_home_stage.c
+ ./compile auto_home_stage.c
+
byte_chr.o: \
compile byte_chr.c byte.h
./compile byte_chr.c
@@ -231,7 +239,7 @@
./choose clr tryshsgr hasshsgr.h1 hasshsgr.h2 > hasshsgr.h
hier.o: \
-compile hier.c auto_home.h
+compile hier.c auto_home_stage.h
./compile hier.c
httpd: \
@@ -257,9 +265,9 @@
./compile httpdate.c
install: \
-load install.o hier.o auto_home.o strerr.a substdio.a open.a error.a \
+load install.o hier.o auto_home_stage.o strerr.a substdio.a open.a error.a \
str.a
- ./load install hier.o auto_home.o strerr.a substdio.a \
+ ./load install hier.o auto_home_stage.o strerr.a substdio.a \
open.a error.a str.a
install.o: \
@@ -268,8 +276,8 @@
./compile install.c
instcheck: \
-load instcheck.o hier.o auto_home.o strerr.a substdio.a error.a str.a
- ./load instcheck hier.o auto_home.o strerr.a substdio.a \
+load instcheck.o hier.o auto_home_stage.o strerr.a substdio.a error.a str.a
+ ./load instcheck hier.o auto_home_stage.o strerr.a substdio.a \
error.a str.a
instcheck.o: \
|