/[3dldf]/3dldf/Group/Makefile.am
ViewVC logotype

Annotation of /3dldf/Group/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.25 - (hide annotations) (download)
Mon Apr 12 10:50:05 2021 UTC (3 years, 6 months ago) by lfinsto1
Branch: MAIN
CVS Tags: HEAD
Changes since 1.24: +48 -39 lines
Summary: Updated.  Copied versions from Git repository to this repository and directory.

1 lfinsto1 1.25 #### Makefile.am
2     #### Created by Laurence Finston.
3 lfinsto1 1.1
4 lfinsto1 1.18 #### This file is part of GNU 3DLDF, a package for three-dimensional drawing.
5 lfinsto1 1.25 #### Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
6     #### 2013, 2014, 2015, 2016, 2017, 2018 The Free Software Foundation, Inc.
7 lfinsto1 1.1
8 lfinsto1 1.18 #### GNU 3DLDF is free software; you can redistribute it and/or modify
9     #### it under the terms of the GNU General Public License as published by
10 lfinsto1 1.19 #### the Free Software Foundation; either version 3 of the License, or
11 lfinsto1 1.18 #### (at your option) any later version.
12    
13     #### GNU 3DLDF is distributed in the hope that it will be useful,
14     #### but WITHOUT ANY WARRANTY; without even the implied warranty of
15     #### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16     #### GNU General Public License for more details.
17    
18     #### You should have received a copy of the GNU General Public License
19     #### along with GNU 3DLDF; if not, write to the Free Software
20     #### Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21    
22     #### GNU 3DLDF is a GNU package.
23     #### It is part of the GNU Project of the
24     #### Free Software Foundation
25     #### and is published under the GNU General Public License.
26     #### See the website http://www.gnu.org
27     #### for more information.
28     #### GNU 3DLDF is available for downloading from
29     #### http://www.gnu.org/software/3dldf/LDF.html.
30    
31 lfinsto1 1.23 #### Please send bug reports to Laurence.Finston@gmx.de
32 lfinsto1 1.18 #### The mailing list help-3dldf@gnu.org is available for people to
33     #### ask other users for help.
34     #### The mailing list info-3dldf@gnu.org is for sending
35     #### announcements to users. To subscribe to these mailing lists, send an
36     #### email with "subscribe <email-address>" as the subject.
37    
38     #### The author can be contacted at:
39    
40 lfinsto1 1.19 #### Laurence D. Finston
41     #### c/o Free Software Foundation, Inc.
42     #### 51 Franklin St, Fifth Floor
43     #### Boston, MA 02110-1301
44     #### USA
45 lfinsto1 1.18
46 lfinsto1 1.23 #### Laurence.Finston@gmx.de
47    
48 lfinsto1 1.1
49    
50    
51 lfinsto1 1.25 ACLOCAL_AMFLAGS = -I m4
52 lfinsto1 1.1
53 lfinsto1 1.25 SOURCEDIR := src
54     DOCDIR := doc
55     OLDDOCDIR := doc/old_doc
56    
57     EXAMPLESDIR := examples
58    
59     export SOURCEDIR
60     export DOCDIR
61     export OLDDOCDIR
62     export EXAMPLESDIR
63    
64     vpath %.web $(SOURCEDIR)
65     vpath %.h $(SOURCEDIR)
66     vpath %.c $(SOURCEDIR)
67     vpath %.o $(SOURCEDIR)
68    
69    
70     EXTRA_DIST = ChangeLog reconfig.sh
71 lfinsto1 1.2
72 lfinsto1 1.1 .DELETE_ON_ERROR :
73    
74 lfinsto1 1.25 SUBDIRS = $(SOURCEDIR) $(DOCDIR) $(OLDDOCDIR) $(EXAMPLESDIR)
75 lfinsto1 1.1
76    
77     .PHONY: dummy
78     dummy:
79     echo "distdir = $(distdir)"
80 lfinsto1 1.25 $(MAKE) dummy -C $(SOURCEDIR)
81 lfinsto1 1.1
82    
83     .PHONY: info
84     info:
85     @echo "info in 3DLDF-<Version>/Makefile.am."
86 lfinsto1 1.25 $(MAKE) info -C $(SOURCEDIR)
87 lfinsto1 1.1
88    
89     .PHONY: info-recursive
90     info-recursive:
91     @echo "info-recursive in 3DLDF-<Version>/Makefile.am."
92 lfinsto1 1.25 $(MAKE) info-recursive -C $(SOURCEDIR)
93 lfinsto1 1.1
94    
95     .PHONY : 3dldf
96     3dldf :
97 lfinsto1 1.25 $(MAKE) 3dldf -C $(SOURCEDIR)
98 lfinsto1 1.1
99    
100    
101     .PHONY : ps
102     ps :
103 lfinsto1 1.25 @echo Running \"make ps\" in $(SOURCEDIR)
104     $(MAKE) ps -C $(SOURCEDIR)
105 lfinsto1 1.1
106    
107     .PHONY : 3DLDFput.mp
108     3DLDFput.mp:
109 lfinsto1 1.25 @echo Running \"make 3DLDFput.mp\" in $(SOURCEDIR)
110     $(MAKE) 3DLDFput.mp -C $(SOURCEDIR)
111 lfinsto1 1.1
112     .PHONY : ldf
113     ldf : 3DLDFput.mp
114 lfinsto1 1.25 @echo Running \"make ldf\" in $(SOURCEDIR)
115     $(MAKE) ldf -C $(SOURCEDIR)
116 lfinsto1 1.1
117     .PHONY : 3
118     3 :
119 lfinsto1 1.25 @echo Running \"make 3\" in $(SOURCEDIR)
120     $(MAKE) 3 -C $(SOURCEDIR)
121 lfinsto1 1.1
122     .PHONY : mp
123     mp :
124 lfinsto1 1.25 @echo Running \"make mp\" in $(SOURCEDIR)
125     $(MAKE) mp -C $(SOURCEDIR)
126 lfinsto1 1.1
127    
128     .PHONY : run
129     run:
130 lfinsto1 1.25 @echo Running \"make run\" in $(SOURCEDIR)
131     $(MAKE) run -C $(SOURCEDIR)
132 lfinsto1 1.1
133     .PHONY : purge
134     purge:
135 lfinsto1 1.25 $(MAKE) purge -C $(SOURCEDIR)
136 lfinsto1 1.1 @echo "Deleting $(distdir).tar.gz (the tarball containing the distribution)."
137     -rm -f $(distdir).tar.gz
138    
139     TAGS :
140 lfinsto1 1.25 $(MAKE) TAGS -C $(SOURCEDIR)
141    
142     .PHONY: query
143    
144     query:
145     echo "libdir = $(libdir)"
146     echo "SOURCEDIR = $(SOURCEDIR)"
147 lfinsto1 1.1
148     ## Local Variables:
149     ## mode:Makefile
150     ## End:

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26