Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93426082
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, Nov 28, 16:19
Size
583 B
Mime Type
text/x-makefile
Expires
Sat, Nov 30, 16:19 (2 d)
Engine
blob
Format
Raw Data
Handle
22634939
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