Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F124032157
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, Jul 31, 00:48
Size
258 B
Mime Type
text/x-makefile
Expires
Sat, Aug 2, 00:48 (2 d)
Engine
blob
Format
Raw Data
Handle
27740348
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