CC = gcc
CFLAGS = -g

# If you are running on a machine with a word size other than 32,
# modify this declaration
WORD=32

numtest: numtest.o numbers.o
	$(CC) $(CFLAGS) -o numtest numtest.o numbers.o

numtest.o: numtest.c
	$(CC) $(CFLAGS) -c numtest.c

numbers.o: numbers.c
	$(CC) $(CFLAGS) -c -DWORD_SIZE=$(WORD) numbers.c

ftest: ftest.c
	$(CC) $(CFLAGS) -o ftest ftest.c
