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

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

Added original make3d

File size: 1.8 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 the symbolic links necessary for this directory,
20# since cvs doesn't save link files...
21
22HFILES = Linear.h \
23        Matrix2f.h \
24        Matrix3f.h \
25        Matrix4f.h \
26        Quaternion.h \
27        Vec3f.h \
28        ply.h \
29        sl_export.H \
30        sl_framebuffer.H \
31        sl_texture.H \
32        sl_val.H \
33        sl_vertex.H
34
35
36default: all
37
38all: $(HFILES)
39
40clean: 
41        -rm -f *.o *~
42
43clobber:
44        -rm -f *.o *~ $(HFILES)
45
46depend:
47        echo > makedep
48        makedepend -fmakedep -- $(CFLAGS) -- $(SRCS)
49        -rm makedep.bak
50
51install: clobber depend all
52
53
54Linear.h:
55        ln -s ../src/linear/Linear.h Linear.h
56
57Matrix2f.h:
58        ln -s ../src/linear/Matrix2f.h Matrix2f.h
59
60Matrix3f.h:
61        ln -s ../src/linear/Matrix3f.h Matrix3f.h
62
63Matrix4f.h:
64        ln -s ../src/linear/Matrix4f.h Matrix4f.h
65
66Quaternion.h:
67        ln -s ../src/linear/Quaternion.h Quaternion.h
68
69Vec3f.h:
70        ln -s ../src/linear/Vec3f.h Vec3f.h
71
72ply.h:
73        ln -s ../src/libply/ply.h ply.h
74
75sl_export.H:
76        ln -s ../src/softrender/sl_export.H sl_export.H
77
78sl_framebuffer.H:
79        ln -s ../src/softrender/sl_framebuffer.H sl_framebuffer.H
80
81sl_texture.H:
82        ln -s ../src/softrender/sl_texture.H sl_texture.H
83
84sl_val.H:
85        ln -s ../src/softrender/sl_val.H sl_val.H
86
87sl_vertex.H:
88        ln -s ../src/softrender/sl_vertex.H sl_vertex.H
Note: See TracBrowser for help on using the repository browser.