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

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

Added original make3d

File size: 1.3 KB
Line 
1#
2#  Brian Curless
3
4#  Computer Graphics Laboratory
5#  Stanford University
6
7#  ---------------------------------------------------------------------
8
9#  Copyright (1997) The Board of Trustees of the Leland Stanford Junior
10#  University. Except for commercial resale, lease, license or other
11#  commercial transactions, permission is hereby given to use, copy,
12#  modify this software for academic purposes only.  No part of this
13#  software or any derivatives thereof may be used in the production of
14#  computer models for resale or for use in a commercial
15#  product. STANFORD MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND
16#  CONCERNING THIS SOFTWARE.  No support is implied or provided.
17
18
19# Make all subdirectories
20
21SUBDIRS = \
22        libply \
23        linear \
24        march \
25        plyclean \
26        plytools \
27        softrender \
28        vrip \
29        pvrip
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
40depend:
41        @for d in $(SUBDIRS); do (cd $$d; $(MAKE) depend); done
42
43cleandepend:
44        @for d in $(SUBDIRS); do (cd $$d; rm makedep); done
45
46install:
47        @for d in $(SUBDIRS); do (cd $$d; $(MAKE) install); done
48
49all:
50        @for d in $(SUBDIRS); do (cd $$d; $(MAKE) all); done
51
Note: See TracBrowser for help on using the repository browser.