# CSSE 132
# Rose-Hulman Institute of Technology
# Computer Science and Software Engineering
#
# Makefile - This is used to make all of the examples.

all: typesizes truncation

typesizes: typesizes.c
	gcc -o typesizes typesizes.c

truncation: truncation.c
	gcc -o truncation truncation.c

clean:
	rm typesizes truncation