Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Thu, Oct 31, 23:06

Makefile

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

Event Timeline