-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
56 lines (45 loc) · 1.36 KB
/
Makefile
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
include $(GOROOT)/src/Make.$(GOARCH)
# uncomment next line if you do not like autoimport
#AUTO = #
FMT = gofmt -spaces -tabwidth=2 -tabindent=false
ALLGO = graf.go cmapi.go type1.go stacks.go
GOFILES = $(wildcard *.go) $(ALLGO)
ALLTS = $(GOFILES:.go=.ts)
ALL = $(ALLGO) $(ALLTS) pdtosvg pdstream tt1 pdserve
PIGGY = *.$O DEADJOE
all: $(ALL)
%: %.$O
$(LD) -o $* $*.$O
%.$O: %.go %.ts
$(GC) -I. $*.go
%.go: %.in
perl $*.in >$*.go
%.ts: %.go
@make -s $(ALLGO)
$(AUTO) ./autoimport $*.go | $(FMT) > $*.new
$(AUTO) mv $*.go $*.go~~ && mv $*.new $*.go
touch $*.ts
depend: $(ALLGO) $(ALLTS)
./mkdepend *.go <Makefile >mkf.new && \
mv -f Makefile Makefile~ && \
mv -f mkf.new Makefile
clean:
-rm *~
distclean: clean
-rm $(ALL) $(PIGGY) 2>/dev/null
# -- depends --
cmapi.$O: cmapt.$O fancy.$O ps.$O stacks.$O xchar.$O
graf.$O: fancy.$O ps.$O stacks.$O strm.$O util.$O
lzw.$O: crush.$O
pdfread.$O: fancy.$O hex.$O lzw.$O ps.$O
pdserve.$O: pdfread.$O strm.$O svg.$O
pdstream.$O: pdfread.$O util.$O
pdtosvg.$O: pdfread.$O strm.$O svg.$O
pfb.$O: hex.$O
ps.$O: fancy.$O hex.$O
svg.$O: fancy.$O pdfread.$O strm.$O svgdraw.$O svgtext.$O util.$O
svgdraw.$O: graf.$O stacks.$O strm.$O util.$O
svgtext.$O: cmapi.$O cmapt.$O fancy.$O graf.$O pdfread.$O ps.$O strm.$O util.$O
tt1.$O: fancy.$O pfb.$O type1.$O util.$O
type1.$O: fancy.$O hex.$O ps.$O stacks.$O strm.$O util.$O
util.$O: xchar.$O