Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103436600
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
Sun, Mar 2, 01:25
Size
283 B
Mime Type
text/x-makefile
Expires
Tue, Mar 4, 01:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24575526
Attached To
R10834 Project_multiproc
Makefile
View Options
CC = gcc
CFLAGS = -std=gnu99 -O3 -fopenmp -Wall
all: pi integral test
pi: pi.c utility.h
$(CC) $(CFLAGS) $< -o $@
integral: integral.c function.o utility.h
$(CC) $(CFLAGS) $< -o $@
test: omp_hello.c
$(CC) $(CFLAGS) $< -o $@
./test
clean:
rm -f pi integral function.o test
Event Timeline
Log In to Comment