CC = gcc CFLAGS = -O2 -Wall -g all: test test: test.o $(CC) $(CFLAGS) $< -o $@ clean: rm -f *~ test *.o