BIN=bp_slow bp_fast cache_slow cache_fast all: $(BIN) clean: rm -f $(BIN) bp_slow: bp.c gcc bp.c -o bp_slow -O2 bp_fast: bp.c gcc bp.c -o bp_fast -O2 -DFAST cache_slow: cache.c gcc cache.c -o cache_slow -O2 cache_fast: cache.c gcc cache.c -o cache_fast -O2 -DFAST