1include Makefile.rules 2 3a.out: globals.ll 4 $(CC) $(CFLAGS) -g -c $^ -o globals.o 5 $(LD) $(LDFLAGS) -g globals.o -o $@ 6