Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92867197
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
Sun, Nov 24, 08:46
Size
742 B
Mime Type
text/x-makefile
Expires
Tue, Nov 26, 08:46 (2 d)
Engine
blob
Format
Raw Data
Handle
22457538
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=single_cell platonic random_points import
# Makefile rules
all: $(EXECUTABLES)
single_cell: single_cell.cc
$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o single_cell single_cell.cc -lvoro++
platonic: platonic.cc
$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o platonic platonic.cc -lvoro++
random_points: random_points.cc
$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o random_points random_points.cc -lvoro++
import: import.cc
$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o import import.cc -lvoro++
clean:
rm -f $(EXECUTABLES)
.PHONY: all clean
Event Timeline
Log In to Comment