# Student's Makefile for the CS:APP Data Lab
SHELL = /bin/sh
CC = gcc
CFLAGS = -O -Wall -pedantic

btest: btest.c bits.c decl.c tests.c btest.h bits.h
	$(CC) $(CFLAGS) -o btest bits.c btest.c decl.c tests.c

submit:
	cs105submit bits.c

clean:
	rm -f *.o btest

