source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/vrippack-0.31/makefile @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 1.4 KB
Line 
1#! gmake
2
3#
4#  Brian Curless
5
6#  Computer Graphics Laboratory
7#  Stanford University
8
9#  ---------------------------------------------------------------------
10
11#  Copyright (1997) The Board of Trustees of the Leland Stanford Junior
12#  University. Except for commercial resale, lease, license or other
13#  commercial transactions, permission is hereby given to use, copy,
14#  modify this software for academic purposes only.  No part of this
15#  software or any derivatives thereof may be used in the production of
16#  computer models for resale or for use in a commercial
17#  product. STANFORD MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND
18#  CONCERNING THIS SOFTWARE.  No support is implied or provided.
19
20
21# Make all subdirectories
22# Requires gnu make (e.g. /usr/common/bin/make)
23# Run "make install" to make clobber, depend, all
24
25SUBDIRS = \
26        include \
27        src \
28        lib \
29        bin \
30
31default:
32        @for d in $(SUBDIRS); do (cd $$d; $(MAKE) default); done
33
34clean:
35        @for d in $(SUBDIRS); do (cd $$d; $(MAKE) clean); done
36
37clobber:
38        @for d in $(SUBDIRS); do (cd $$d; $(MAKE) clobber); done
39        cd include; make
40        cd lib; make
41
42depend:
43        @for d in $(SUBDIRS); do (cd $$d; $(MAKE) depend); done
44
45install:
46        @for d in $(SUBDIRS); do (cd $$d; $(MAKE) install); done
47
48all:
49        @for d in $(SUBDIRS); do (cd $$d; $(MAKE) all); done
50
51tar:
52        cd .. && tar zcvf vrip_plytools_src.tar.gz `find ply -name CVS -prune -o -type f -print`
Note: See TracBrowser for help on using the repository browser.