all: bst # Which compiler CC = gcc # Options, if any CFLAGS = -ansi # List program components, what they depend on, and how to compile each bst: bst.o bst-proc.o $(CC) -o bst bst.o bst-proc.o bst.o: bst.c node.h bst-proc.h $(CC) $(CFLAGS) -c bst.c bst-proc.o: bst-proc.c bst-proc.h node.h $(CC) $(CFLAGS) -c bst-proc.c