blob: 21a58276092b0da95574458f925678ffc79db92a [file] [log] [blame]
# A simple Makefile for the recursion program
CC = g++
DEBUG = -g
#CXXFLAGS = -std=c++0x
TARGET = recursion
all: $(TARGET)
$(TARGET): $(TARGET).cpp
$(CC) $(DEBUG) -o $(TARGET) $(TARGET).cpp
clean:
$(RM) $(TARGET)