# # Makefile for many UNIX compilers using the # "standard" command name CC # CC=CC CFLAGS=-g stack_s: stack_s.cc $(CC) $(CFLAGS) -o stack_s stack_s.cc clean: rm stack_s