Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103606056
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, Mar 3, 08:21
Size
261 B
Mime Type
text/x-makefile
Expires
Wed, Mar 5, 08:21 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24602772
Attached To
R7871 phys-743-exercises
Makefile
View Options
CXX ?= g++
LD=${CXX}
CXXFLAGS+=-Wall -Wextra -Werror -pedantic -std=c++11
LDFLAGS+=-lm $(CXXFLAGS)
OBJS=poisson.o simulation.o double_buffer.o grid.o dumpers.o
all: poisson
poisson: $(OBJS)
$(LD) -o $@ $(OBJS) $(LDFLAGS)
clean:
rm -f hello poisson *.o *~
Event Timeline
Log In to Comment