Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119502877
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
Fri, Jun 27, 06:25
Size
264 B
Mime Type
text/x-makefile
Expires
Sun, Jun 29, 06:25 (2 d)
Engine
blob
Format
Raw Data
Handle
27030605
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