Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Wed, Jun 4, 13:22

Makefile

CC = gcc
CFLAGS = -std=gnu99 -O3 -fopenmp -Wall
all: assignment2
assignment2: assignment2.c utility.h algorithm_T_tile.c
$(CC) $(CFLAGS) $< -o $@
clean:
rm -f assignment2 *.o

Event Timeline