1 |
lfinsto1 |
1.1 |
## 3DLDF-<Version>/Makefile.am |
2 |
|
|
# Created by Laurence Finston. |
3 |
|
|
|
4 |
lfinsto1 |
1.5 |
# $Id: Makefile.am,v 1.12 2005/04/25 12:19:34 lfinsto1 Exp $ |
5 |
lfinsto1 |
1.1 |
|
6 |
|
|
# This file is part of 3DLDF, a package for three-dimensional drawing. |
7 |
|
|
# Copyright (C) 2003, 2004 Laurence D. Finston. |
8 |
|
|
|
9 |
|
|
# 3DLDF is free software; you can redistribute it and/or modify |
10 |
|
|
# it under the terms of the GNU General Public License as published by |
11 |
|
|
# the Free Software Foundation; either version 2 of the License, or |
12 |
|
|
# (at your option) any later version. |
13 |
|
|
|
14 |
|
|
# 3DLDF is distributed in the hope that it will be useful, |
15 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 |
|
|
# GNU General Public License for more details. |
18 |
|
|
|
19 |
|
|
# You should have received a copy of the GNU General Public License |
20 |
|
|
# along with 3DLDF; if not, write to the Free Software |
21 |
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
22 |
|
|
|
23 |
|
|
# The author can be contacted at: |
24 |
|
|
|
25 |
|
|
# Laurence D. Finston |
26 |
|
|
# Kreuzbergring 41 |
27 |
|
|
# D-37075 Goettingen |
28 |
|
|
# Germany |
29 |
|
|
|
30 |
|
|
# lfinsto1@gwdg.de |
31 |
|
|
# s246794@stud.uni-goettingen.de |
32 |
|
|
|
33 |
|
|
|
34 |
|
|
CWEBDIR := CWEB |
35 |
lfinsto1 |
1.3 |
DOCDIR := DOC |
36 |
|
|
TEXINFODIR := TEXINFO |
37 |
lfinsto1 |
1.5 |
TEXIPPDIR := TEXIPP |
38 |
lfinsto1 |
1.1 |
|
39 |
lfinsto1 |
1.3 |
export CWEBDIR |
40 |
|
|
export DOCDIR |
41 |
|
|
export TEXINFODIR |
42 |
lfinsto1 |
1.5 |
export TEXIPPDIR |
43 |
lfinsto1 |
1.1 |
|
44 |
|
|
vpath %.web $(CWEBDIR) |
45 |
|
|
vpath %.h $(CWEBDIR) |
46 |
|
|
vpath %.c $(CWEBDIR) |
47 |
|
|
vpath %.o $(CWEBDIR) |
48 |
|
|
|
49 |
|
|
|
50 |
lfinsto1 |
1.4 |
EXTRA_DIST = 00NEWS 00README ChangeLog |
51 |
lfinsto1 |
1.2 |
|
52 |
|
|
|
53 |
lfinsto1 |
1.1 |
.DELETE_ON_ERROR : |
54 |
|
|
|
55 |
lfinsto1 |
1.3 |
SUBDIRS = $(CWEBDIR) $(DOCDIR) |
56 |
lfinsto1 |
1.1 |
|
57 |
|
|
|
58 |
|
|
.PHONY: dummy |
59 |
|
|
dummy: |
60 |
|
|
echo "distdir = $(distdir)" |
61 |
|
|
$(MAKE) dummy -C $(CWEBDIR) |
62 |
|
|
|
63 |
|
|
|
64 |
|
|
.PHONY: info |
65 |
|
|
info: |
66 |
|
|
@echo "info in 3DLDF-<Version>/Makefile.am." |
67 |
|
|
$(MAKE) info -C $(CWEBDIR) |
68 |
|
|
|
69 |
|
|
|
70 |
|
|
.PHONY: info-recursive |
71 |
|
|
info-recursive: |
72 |
|
|
@echo "info-recursive in 3DLDF-<Version>/Makefile.am." |
73 |
|
|
$(MAKE) info-recursive -C $(CWEBDIR) |
74 |
|
|
|
75 |
|
|
|
76 |
|
|
.PHONY : 3dldf |
77 |
|
|
3dldf : |
78 |
|
|
$(MAKE) 3dldf -C $(CWEBDIR) |
79 |
|
|
|
80 |
|
|
|
81 |
|
|
|
82 |
|
|
.PHONY : ps |
83 |
|
|
ps : |
84 |
|
|
@echo Running \"make ps\" in $(CWEBDIR) |
85 |
|
|
$(MAKE) ps -C $(CWEBDIR) |
86 |
|
|
|
87 |
|
|
|
88 |
|
|
.PHONY : 3DLDFput.mp |
89 |
|
|
3DLDFput.mp: |
90 |
|
|
@echo Running \"make 3DLDFput.mp\" in $(CWEBDIR) |
91 |
|
|
$(MAKE) 3DLDFput.mp -C $(CWEBDIR) |
92 |
|
|
|
93 |
|
|
.PHONY : ldf |
94 |
|
|
ldf : 3DLDFput.mp |
95 |
|
|
@echo Running \"make ldf\" in $(CWEBDIR) |
96 |
|
|
$(MAKE) ldf -C $(CWEBDIR) |
97 |
|
|
|
98 |
|
|
.PHONY : 3 |
99 |
|
|
3 : |
100 |
|
|
@echo Running \"make 3\" in $(CWEBDIR) |
101 |
|
|
$(MAKE) 3 -C $(CWEBDIR) |
102 |
|
|
|
103 |
|
|
.PHONY : mp |
104 |
|
|
mp : |
105 |
|
|
@echo Running \"make mp\" in $(CWEBDIR) |
106 |
|
|
$(MAKE) mp -C $(CWEBDIR) |
107 |
|
|
|
108 |
|
|
|
109 |
|
|
.PHONY : run |
110 |
|
|
run: |
111 |
|
|
@echo Running \"make run\" in $(CWEBDIR) |
112 |
|
|
$(MAKE) run -C $(CWEBDIR) |
113 |
|
|
|
114 |
|
|
.PHONY : purge |
115 |
|
|
purge: |
116 |
|
|
$(MAKE) purge -C $(CWEBDIR) |
117 |
|
|
@echo "Deleting $(distdir).tar.gz (the tarball containing the distribution)." |
118 |
|
|
-rm -f $(distdir).tar.gz |
119 |
|
|
|
120 |
|
|
TAGS : |
121 |
|
|
$(MAKE) TAGS -C $(CWEBDIR) |
122 |
|
|
|
123 |
|
|
## Local Variables: |
124 |
|
|
## mode:Makefile |
125 |
|
|
## End: |