CC = gcc CFLAGS = -g -Wall -Werror -O2 OBJS = aatest.o autoarray.o all: aatest clean: rm $(OBJS) aatest aatest: $(OBJS) $(CC) -o aatest $(OBJS)