-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefileSources.mk
46 lines (42 loc) · 1.71 KB
/
MakefileSources.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
COMMON_SOURCES := \
$(COMMONDIR)/mas/bvtree/bvtree.cxx \
$(COMMONDIR)/mas/concurrency/thread.cxx \
$(COMMONDIR)/mas/core/base.cxx \
$(COMMONDIR)/mas/core/exception.cxx \
$(COMMONDIR)/mas/core/math.cxx \
$(COMMONDIR)/mas/core/time.cxx \
$(COMMONDIR)/mas/csg/csg.cxx \
$(COMMONDIR)/mas/fem/fem.cxx \
$(COMMONDIR)/mas/mesh/io.cxx \
$(COMMONDIR)/mas/mesh/mesh.cxx \
$(COMMONDIR)/mas/mesh/meshbv.cxx \
$(COMMONDIR)/mas/mesh/meshbv_intersector.cxx \
$(COMMONDIR)/mas/mesh/simplification.cxx
MEX_SOURCES := \
$(MEXDIR)/mas/bvtree/bvtree_build_mex.cxx \
$(MEXDIR)/mas/bvtree/bvtree_destroy_mex.cxx \
$(MEXDIR)/mas/bvtree/bvtree_intersect_plane_mex.cxx \
$(MEXDIR)/mas/bvtree/bvtree_intersect_point_mex.cxx \
$(MEXDIR)/mas/bvtree/bvtree_update_mex.cxx \
$(MEXDIR)/mas/mesh/smesh_bvtree_build_mex.cxx \
$(MEXDIR)/mas/mesh/smesh_bvtree_destroy_mex.cxx \
$(MEXDIR)/mas/mesh/smesh_bvtree_is_inside_mex.cxx \
$(MEXDIR)/mas/mesh/smesh_bvtree_nearest_polygon_mex.cxx
CMD_SOURCES := \
$(CMDDIR)/mas/mesh/is_inside_cmd.cxx \
$(CMDDIR)/mas/mesh/meshbv_cmd.cxx
TEST_SOURCES := \
$(TESTDIR)/mas/bvtree/update_test.cxx \
$(TESTDIR)/mas/concurrency/parallel_sort_test.cxx \
$(TESTDIR)/mas/concurrency/queue_test.cxx \
$(TESTDIR)/mas/concurrency/shared_lock_test.cxx \
$(TESTDIR)/mas/concurrency/tuple_test.cxx \
$(TESTDIR)/mas/core/heap_test.cxx \
$(TESTDIR)/mas/core/martrix4d_test.cxx \
$(TESTDIR)/mas/core/matrixnd_test.cxx \
$(TESTDIR)/mas/core/qr_test.cxx \
$(TESTDIR)/mas/core/queue_test.cxx \
$(TESTDIR)/mas/mesh/simplification_test.cxx
M_SOURCES := \
$(MEXDIR)/mas/bvtree/bvtree.m \
$(MEXDIR)/mas/mesh/smesh_bvtree.m