14 lines
301 B
Makefile
14 lines
301 B
Makefile
#
|
|
# Makefile that builds btest and other helper programs for the CS:APP data lab
|
|
#
|
|
CC = gcc
|
|
CFLAGS = -O2 -Wall -m32
|
|
LIBS = -lm
|
|
all: test
|
|
|
|
test: main.c homework.c test.c test.h xoroshiro128plusplus.c
|
|
$(CC) $(CFLAGS) $(LIBS) -o test main.c homework.c test.c xoroshiro128plusplus.c
|
|
|
|
clean:
|
|
rm -f test
|