# Our first Makefile

CC = gcc
CFLAGS = -g
LDFLAGS = -g
OBJS = main.o blah.o

a.out: $(OBJS)
	$(CC) $(LDFLAGS) $(OBJS)

$(OBJS): blah.h
