# Makefile for CS113 - HW3 # ***************************************************** # Parameters to control Makefile operation CC = gcc CFLAGS = -ansi -pedantic -Wall -g # **************************************************** # Entries to bring the executable up to date h3inventory: h3main.o h3invent.o $(CC) $(CFLAGS) -o h3inventory h3main.o h3invent.o h3main.o: h3main.c h3invent.h $(CC) $(CFLAGS) -c h3main.c h3invent.o: h3invent.c h3invent.h $(CC) $(CFLAGS) -c h3invent.c