# # Makefile for G++ # CC=g++ CFLAGS=-g -Wall all: dropOutStack dropOutStack: dropOutStack.cpp stack.h $(CC) $(CFLAGS) -o dropOutStack dropOutStack.cpp clean: rm dropOutStack *.o