Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95838094
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
Thu, Dec 19, 19:29
Size
264 B
Mime Type
text/x-makefile
Expires
Sat, Dec 21, 19:29 (2 d)
Engine
blob
Format
Raw Data
Handle
23049902
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