# # Makefile for the Free Software Foundations g++ compiler # CC=g++ CFLAGS= -Wall lab2: calc.cc $(CC) $(CFLAGS) -o lab2 calc.cc clean: rm calc