Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100323728
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, Jan 29, 23:10
Size
583 B
Mime Type
text/x-makefile
Expires
Fri, Jan 31, 23:10 (2 d)
Engine
blob
Format
Raw Data
Handle
23904741
Attached To
R11821 phys-743-lecture
Makefile
View Options
CC=mpicc
CFLAGS=-Wall -Werror -g
LDFLAGS=-lm
EXECUTABLES=hello ping ping_correct iping exchange exchange_send_recv exchange_send_recv_replace
all: $(EXECUTABLES)
hello: hello.c
$(CC) $< $(CFLAGS) -o $@
ping: ping.c
$(CC) $< $(CFLAGS) -o $@
ping_correct: ping_correct.c
$(CC) $< $(CFLAGS) -o $@
iping: iping.c
$(CC) $< $(CFLAGS) -o $@
exchange: exchange.c
$(CC) $< $(CFLAGS) -o $@
exchange_send_recv: exchange_send_recv.c
$(CC) $< $(CFLAGS) -o $@
exchange_send_recv_replace: exchange_send_recv_replace.c
$(CC) $< $(CFLAGS) -o $@
clean:
rm -f $(EXECUTABLES) timing.o
Event Timeline
Log In to Comment