CC = gcc -std=c99
CFLAGS = -O2 -Wall -Werror

PROG = asort
OBJ = asort.o

asort: $(OBJ)
	$(CC) -o $(PROG) $(OBJ)

clean:
	rm -f $(PROG) $(OBJ) core
