#
#  Makefile for "duct" project
#

duct: duct.c
	gcc -O2 -lm -o duct duct.c

duct_p: duct_p.c
	gcc -lm -o duct_p duct_p.c

duct_pp: duct_pp.c
	gcc -lm -o duct_pp duct_pp.c

### end of Makefile ###