Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106509281
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, Mar 26, 13:30
Size
242 B
Mime Type
text/x-makefile
Expires
Fri, Mar 28, 13:30 (2 d)
Engine
blob
Format
Raw Data
Handle
25164145
Attached To
rSCUSINGMPI using-mpi
Makefile
View Options
CC=gcc
CFLAGS = -g -O0 -static
LDFLAGS = -g -static
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