annotate resume/Makefile~ @ 26:86cf5ae6cadf default tip

little fix
author admin@mb22-no-macbook.local
date Sun, 15 Mar 2009 00:39:36 +0900
parents 82281024ce1f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
1 TARGET = finalutf8
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
2
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
3 LATEX = /opt/local/bin/platex-utf8
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
4 #LATEX = platex
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
5 BIBTEX = jbibtex
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
6 DVIPS = dvips
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
7 DVIPDFM = dvipdfmx
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
8 RM = rm -f
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
9 EBB = ebb
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
10
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
11 # Option definitions
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
12 DVIPDFMOPT =
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
13 DVIPSOPT = -D 720 -mode esphi -O 0mm,0mm -N0
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
14
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
15 # Suffixes definitions
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
16 .SUFFIXES: .tex .dvi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
17
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
18 # Recipes
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
19 all: pdf# $(TARGET).ps
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
20 open $(TARGET).pdf
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
21
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
22 dvi:
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
23 @echo "----------- make dvi file ($(TARGET).dvi) ----------"
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
24 $(LATEX) $(TARGET)
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
25 $(LATEX) $(TARGET)
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
26 $(LATEX) $(TARGET)
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
27 pdf: dvi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
28 $(DVIPDFM) $(DVIPDFMOPT) $(TARGET)
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
29
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
30 clean:
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
31 $(RM) *~ \#*
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
32 @if [ -f $(TARGET).aux ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
33 then $(RM) $(TARGET).aux;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
34 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
35 @if [ -f $(TARGET).log ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
36 then $(RM) $(TARGET).log;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
37 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
38 @if [ -f $(TARGET).toc ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
39 then $(RM) $(TARGET).toc;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
40 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
41 @if [ -f $(TARGET).lof ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
42 then $(RM) $(TARGET).lof;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
43 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
44 @if [ -f $(TARGET).lot ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
45 then $(RM) $(TARGET).lot;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
46 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
47 @if [ -f $(TARGET).big ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
48 then $(RM) $(TARGET).big;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
49 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
50 @if [ -f $(TARGET).bbl ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
51 then $(RM) $(TARGET).bbl;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
52 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
53 @if [ -f $(TARGET).ilg ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
54 then $(RM) $(TARGET).ilg;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
55 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
56 @if [ -f $(TARGET).idx ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
57 then $(RM) $(TARGET).idx;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
58 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
59 @if [ -f $(TARGET).ind ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
60 then $(RM) $(TARGET).ind;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
61 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
62 @if [ -f $(TARGET).dvi ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
63 then $(RM) $(TARGET).dvi;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
64 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
65 @if [ -f $(TARGET).pdf ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
66 then $(RM) $(TARGET).pdf;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
67 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
68 @if [ -f $(TARGET).out ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
69 then $(RM) $(TARGET).out;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
70 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
71 @if [ -f $(TARGET).bbl ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
72 then $(RM) $(TARGET).bbl;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
73 fi
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
74 @if [ -f $(TARGET).blg ];\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
75 then $(RM) $(TARGET).blg;\
tkaito@nw0534.st.ie.u-ryukyu.ac.jp
parents:
diff changeset
76 fi