# Incremental make w/ debug info.

incr:
	./bvd_mkpd incr -g

# Incremental make w/out debug info.  Used when fixing problems w/ BVD build.

incr_nodebug:
	./bvd_mkpd incr

# Rebuild product from scratch w/o debug info
# and with optimization level =1.

opti1:
	./bvd_mkpd scratch -O1

# Rebuild product from scratch w/o debug info
# and with optimization level =2.

opti2:
	./bvd_mkpd scratch -O2

# Rebuild product from scratch w/o debug info
# and with optimization level =3.

opti3:
	./bvd_mkpd scratch -O3

# Rebuild product from scratch w/o debug info
# and with optimization level =4.

opti4:
	./bvd_mkpd scratch -O4

# Rebuild product from scratch w/ debug info.

scratch:
	./bvd_mkpd scratch -g


# BVD's nightly build uses target "default".  No debug info.

default:
	./bvd_mkpd scratch 
