Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F113289009
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
Fri, May 16, 22:25
Size
226 B
Mime Type
text/x-makefile
Expires
Sun, May 18, 22:25 (2 d)
Engine
blob
Format
Raw Data
Handle
26190077
Attached To
rUNILCOURSE unil-course
Makefile
View Options
CC=gcc
CFLAGS = -g -O0
LDFLAGS = -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