Makefile: Silent-rules stuff.
[fringe] / Makefile
1 ### Makefile for same-fringe implementations.
2
3 ###--------------------------------------------------------------------------
4 ### Notes about organization.
5 ###
6 ### Most projects have lots of stuff in just a few languages, so it makes
7 ### sense to put the language configuration in one place. This one's
8 ### different. Its entire purpose is to demonstrate lots of different
9 ### approaches.
10 ###
11 ### So, at the top we declare the main targets; then each language has its
12 ### configuration and build rules.
13
14 .SUFFIXES: .o
15 LANGS =
16 SOURCES =
17 TARGETS = $(patsubst %,%-fringe,$(LANGS))
18 CLEANFILES = $(TARGETS)
19
20 all::
21 clean::; rm -f $(CLEANFILES)
22
23 ###--------------------------------------------------------------------------
24 ### Silent rules stuff.
25
26 ## Default verbosity setting.
27 V = 0
28
29 ## Infrastructure.
30 v_echo = $(call v_echo_$V,$1)
31 v_echo_1 =
32 v_echo_0 = @printf " %-6s %s\n" "$1" "$@";
33 V_HIDE = $(V_HIDE_$V)
34 V_HIDE_0 = @
35
36 ###--------------------------------------------------------------------------
37 ### Testing.
38
39 CLEANFILES += test.*
40 test:: all
41 @win=0 lose=0; \
42 for lang in $(LANGS); do \
43 echo >&3 "*** $$lang"; \
44 printf "Test $$lang..."; \
45 time=`command time -o/dev/stdout -f "%U user; %S system; %E" \
46 ./test ./$${lang}-fringe 2>&3`; \
47 if [ $$? -eq 0 ]; then \
48 win=$$(expr $$win + 1); \
49 printf " ok ($$time)\n"; \
50 else \
51 lose=$$(expr $$lose + 1); \
52 printf " FAILED\n"; \
53 fi; \
54 done 3>test.log; \
55 if [ $$lose -eq 0 ]; then \
56 echo "All $$win test(s) OK"; \
57 else \
58 echo "FAILED $$lose test(s)!"; \
59 exit 1; \
60 fi
61
62 ###--------------------------------------------------------------------------
63 ### Reporting.
64
65 report::
66 wc -l $(SOURCES) | sort -n
67
68 ###--------------------------------------------------------------------------
69 ### C.
70
71 CC = gcc
72 CFLAGS = -O2 -g -pedantic -Wall
73 CLEANFILES += *.o
74 .SUFFIXES: .c
75 .c.o:; $(call v_echo,CC)$(CC) -c $(CFLAGS) -o $@ $<
76
77 LANGS += c
78 SOURCES += c-fringe.c
79 c-fringe: c-fringe.o
80 $(call v_echo,CCLD)$(CC) -o $@ $^
81
82 ###--------------------------------------------------------------------------
83 ### Haskell.
84
85 HC = ghc
86 HFLAGS = -O2
87 CLEANFILES += *.hi *.hc
88 .SUFFIXES: .hs
89 .hs.o:; $(call v_echo,HC)$(HC) -c $(HFLAGS) -o $@ $<
90
91 LANGS += haskell
92 SOURCES += haskell-fringe.hs
93 haskell-fringe: haskell-fringe.o
94 $(call v_echo,HCLD)$(HC) -o $@ $^
95
96 ###--------------------------------------------------------------------------
97 ### Icon.
98
99 ICONT = icont
100 IFLAGS = -u -fa
101
102 LANGS += icon
103 SOURCES += icon-fringe.icn
104 icon-fringe: icon-fringe.icn
105 $(call v_echo,ICONT)$(ICONT) -o $@ $^
106
107 ###--------------------------------------------------------------------------
108 ### Common Lisp.
109
110 CLEANFILES += *.core *.fasl
111
112 .SUFFIXES: .lisp .fasl
113 .lisp.fasl:
114 $(call v_echo,CL)sbcl --eval \
115 '(quit :unix-status (if (compile-file "$<") 0 1))'
116
117 LANGS += cl
118 SOURCES += cl-fringe.lisp
119 cl-fringe: cl-fringe.fasl
120 $(call v_echo,CP)cp $< $@.new && chmod +x $@.new && mv $@.new $@
121 ## $(call v_echo,CL)cl-launch -o $@ -f `pwd`/$^ +I -r launch -d $@.core
122
123 ###--------------------------------------------------------------------------
124 ### F#.
125
126 FSC = fsc
127 CLEANFILES += *.exe
128 .SUFFIXES: .fs .exe
129 .fs.exe:; $(call v_echo,FSC)$(FSC) -o $@ $<
130
131 LANGS += f\#
132 SOURCES += f\#-fringe.fs
133 f\#-fringe: f\#-fringe.exe
134 $(call v_echo,CP)chmod +x $< && cp $< $@
135
136 ###--------------------------------------------------------------------------
137 ### Scheme.
138
139 SCMC = csc
140 SCMFLAGS = -c -O2
141 .SUFFIXES: .scm
142 .scm.o:; $(call v_echo,SCMC)$(SCMC) $(SCMFLAGS) -o $@ $<
143
144 LANGS += scheme
145 SOURCES += scheme-fringe.scm
146 scheme-fringe: scheme-fringe.o
147 $(call v_echo,SCMLD)$(SCMC) -o $@ $^
148
149 ###--------------------------------------------------------------------------
150 ### Go.
151
152 GOOBJ = 8
153 GOC = $(GOOBJ)g
154 GOLINK = $(GOOBJ)l
155 CLEANFILES += *.$(GOOBJ)
156 .SUFFIXES: .$(GOOBJ) .go
157 .go.$(GOOBJ):; $(call v_echo,GOC)$(GOC) $(GOFLAGS) $<
158
159 LANGS += go
160 SOURCES += go-fringe.go
161 go-fringe: go-fringe.$(GOOBJ)
162 $(call v_echo,GOLD)$(GOLINK) -o $@ $^
163
164 ###--------------------------------------------------------------------------
165 ### Smalltalk.
166
167 LANGS += smalltalk
168 TARGETS += smalltalk-fringe.im
169 SOURCES += smalltalk-fringe.st
170 smalltalk-fringe.im: smalltalk-fringe.st
171 $(call v_echo,GSTIM)echo "ObjectMemory snapshot: '$@.new'" | gst $^ -
172 $(V_HIDE)mv $@.new $@
173 smalltalk-fringe:
174 $(call v_echo,GENSH){ echo '#! /bin/sh'; \
175 echo '"exec" "gst" "-I" "$@.im" "-f" "$$0" "$$@"'; \
176 echo 'ObjectMemory quit: (Node main: Smalltalk arguments)'; \
177 } >$@.new
178 $(V_HIDE)chmod +x $@.new && mv $@.new $@
179
180 ###----- That's all, folks --------------------------------------------------
181
182 all:: $(TARGETS)