Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110667430
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, Apr 27, 10:56
Size
264 B
Mime Type
text/x-makefile
Expires
Tue, Apr 29, 10:56 (2 d)
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