blob: 21a58276092b0da95574458f925678ffc79db92a [file] [log] [blame]
Bobby Ho6bb208e2016-11-06 14:43:53 -08001# A simple Makefile for the recursion program
2
3CC = g++
4
5DEBUG = -g
6#CXXFLAGS = -std=c++0x
7
8TARGET = recursion
9
10all: $(TARGET)
11
12$(TARGET): $(TARGET).cpp
13 $(CC) $(DEBUG) -o $(TARGET) $(TARGET).cpp
14
15clean:
16 $(RM) $(TARGET)