Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110963619
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
Mon, Apr 28, 23:41
Size
264 B
Mime Type
text/x-makefile
Expires
Wed, Apr 30, 23:41 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25838991
Attached To
rSCINTROPAR Introduction to parallelism
Makefile
View Options
OPTIM+=-O3
CXX=g++
CC=g++
FC=gfortran
LD=${CXX}
CXXFLAGS+=-Wall -Wextra -std=c++11 $(OPTIM)
FCFLAGS+=-Wall -Wextra $(OPTIM)
LDFLAGS+=$(OPTIM) -lm
EXE=pi pif
all: clean pi
pi: pi.o
pif: pi.f90
$(FC) $(FCFLAGS) $(LDFLAGS) $< -o $@
clean:
rm -f $(EXE) *.o *~
Event Timeline
Log In to Comment