forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mmix-20110420-makefile.patch
71 lines (59 loc) · 1.6 KB
/
mmix-20110420-makefile.patch
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
--- a/Makefile
+++ b/Makefile
@@ -27,23 +27,23 @@
if test -r $*.ch; then cweave $*.w $*.ch; else cweave $*.w; fi
.w.o:
- make $*.c
- make $*.o
+ $(MAKE) $*.c
+ $(MAKE) $*.o
.w:
- make $*.c
- make $*
+ $(MAKE) $*.c
+ $(MAKE) $*
.w.dvi:
- make $*.tex
- make $*.dvi
+ $(MAKE) $*.tex
+ $(MAKE) $*.dvi
.w.ps:
- make $*.dvi
- make $*.ps
+ $(MAKE) $*.dvi
+ $(MAKE) $*.ps
.w.pdf:
- make $*.tex
+ $(MAKE) $*.tex
case "$(PDFTEX)" in \
dvipdfm ) tex "\let\pdf+ \input $*"; dvipdfm $* ;; \
pdftex ) pdftex $* ;; \
@@ -73,27 +73,26 @@
clean:
rm -f *~ *.o *.c *.h *.tex *.log *.dvi *.toc *.idx *.scn *.ps core
-mmix-pipe.o: mmix-pipe.c abstime
+abstime.h: abstime
./abstime > abstime.h
+
+mmix-pipe.o: mmix-pipe.c abstime abstime.h
$(CC) $(CFLAGS) -c mmix-pipe.c
- rm abstime.h
mmix-config.o: mmix-pipe.o
mmmix: mmix-arith.o mmix-pipe.o mmix-config.o mmix-mem.o mmix-io.o mmmix.c
- $(CC) $(CFLAGS) mmmix.c \
+ $(CC) $(CFLAGS) $(LDFLAGS) mmmix.c \
mmix-arith.o mmix-pipe.o mmix-config.o mmix-mem.o mmix-io.o -o mmmix
mmixal: mmix-arith.o mmixal.c
- $(CC) $(CFLAGS) mmixal.c mmix-arith.o -o mmixal
+ $(CC) $(CFLAGS) $(LDFLAGS) mmixal.c mmix-arith.o -o mmixal
-mmix: mmix-arith.o mmix-io.o mmix-sim.c abstime
- ./abstime > abstime.h
- $(CC) $(CFLAGS) mmix-sim.c mmix-arith.o mmix-io.o -o mmix
- rm abstime.h
+mmix: mmix-arith.o mmix-io.o mmix-sim.c abstime abstime.h
+ $(CC) $(CFLAGS) $(LDFLAGS) mmix-sim.c mmix-arith.o mmix-io.o -o mmix
mmotype: mmotype.c
- $(CC) $(CFLAGS) mmotype.c -o mmotype
+ $(CC) $(CFLAGS) $(LDFLAGS) mmotype.c -o mmotype
tarfile: $(ALL)
tar cvf /tmp/mmix.tar $(ALL)