Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95732429
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
Wed, Dec 18, 18:42
Size
264 B
Mime Type
text/x-makefile
Expires
Fri, Dec 20, 18:42 (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