Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93328656
Makefile
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Nov 27, 23:01
Size
666 B
Mime Type
text/x-makefile
Expires
Fri, Nov 29, 23:01 (2 d)
Engine
blob
Format
Raw Data
Handle
22618258
Attached To
rLAMMPS lammps
Makefile
View Options
# Voro++ makefile
#
# Author : Chris H. Rycroft (LBL / UC Berkeley)
# Email : chr@alum.mit.edu
# Date : August 30th 2011
# Load the common configuration file
include ../../config.mk
# List of executables
EXECUTABLES=cell_statistics custom_output radical
# Makefile rules
all: $(EXECUTABLES)
cell_statistics: cell_statistics.cc
$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o cell_statistics cell_statistics.cc -lvoro++
custom_output: custom_output.cc
$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o custom_output custom_output.cc -lvoro++
radical: radical.cc
$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o radical radical.cc -lvoro++
clean:
rm -f $(EXECUTABLES)
.PHONY: all clean
Event Timeline
Log In to Comment