Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98037477
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 8, 23:02
Size
225 B
Mime Type
text/x-makefile
Expires
Fri, Jan 10, 23:02 (2 d)
Engine
blob
Format
Raw Data
Handle
23489368
Attached To
rSCUSINGMPI using-mpi
Makefile
View Options
CC=gcc
CFLAGS = -g -O0
LFLAGS = -g
LIBS=
.SUFFIXES:
.SUFFIXES: .o .c
.c.o:
$(CC) $(CFLAGS) -c $<
OBJS = hello.o output.o
all: hello
hello: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $? $(LIBS)
clean:
rm -f *.o hello hello_mpi
Event Timeline
Log In to Comment