CC=gcc
CFLAGS=-Wall -pedantic -std=c99 -g3

IsetTest: iset.o iset_test.o
	${CC} ${CFLAGS} -o $@ $^ -lm

iset.c: iset.h
iset_test.c: iset.h
