RELEASE_CFLAGS=-Wall -O3 DEBUG_CFLAGS=-g -Wall all: bst_release bst_debug bst_release: mt.c timer.c driver.c bst.c gcc $(RELEASE_CFLAGS) -o bin/$@ $^ bst_debug: mt.c timer.c driver.c bst.c gcc $(DEBUG_CFLAGS) -o bin/$@ $^ debug: bst_debug clean: -rm -rf bin/*