makefile 183 B

12345678910111213
  1. #
  2. # Makefile for G++
  3. #
  4. CC=g++
  5. CFLAGS=-g -Wall
  6. all: dropOutStack
  7. dropOutStack: dropOutStack.cpp stack.h
  8. $(CC) $(CFLAGS) -o dropOutStack dropOutStack.cpp
  9. clean:
  10. rm dropOutStack *.o