ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/src/applications/nanoRodBuilder/Makefile.in
Revision: 2190
Committed: Wed Apr 13 22:30:22 2005 UTC (19 years, 2 months ago) by gezelter
File size: 346 byte(s)
Log Message:
added CGAL checks

File Contents

# User Rev Content
1 gezelter 2190 Package = applications/nanoRodBuilder
2    
3     MySource = \
4     nanorodBuilder.cpp \
5     nanorodBuilderCmd.c
6    
7     USE_CGAL = @USE_CGAL@
8    
9     ifeq "$(USE_CGAL)" "yes"
10     Source = $(MySource) GeometryBuilder.cpp
11     else
12     Source = $(MySource)
13     endif
14    
15    
16     BuiltParallelExe = 0
17    
18     RmiSource =
19    
20     Main = nanoRodBuilder
21    
22     DEV_ROOT=../../..
23     include $(DEV_ROOT)/make/Makefile
24