Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101349685
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
Sat, Feb 8, 08:54
Size
289 B
Mime Type
text/x-makefile
Expires
Mon, Feb 10, 08:54 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24141161
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 *.out
Event Timeline
Log In to Comment