CC=gcc
CFLAGS=-g3 -Wall

all: test_radixsort sortInput

test: all
	./test_radixsort

test_radixsort: test_radixsort.o radixsort.o
	$(CC) $(CFLAGS) -o $@ $^

sortInput: sortInput.o radixsort.o
	$(CC) $(CFLAGS) -o $@ $^

clean:
	$(RM) test_radixsort sortInput *.o
