Skip to content

Commit 27902fa

Browse files
committed
support c++0x standard
1 parent 91282a9 commit 27902fa

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CC=gcc
33
CPP=g++
44
AR=ar
55
RANLIB=ranlib
6-
CFLAGS= -g -Wall -Wno-unused-function
6+
CFLAGS= -g -Wall -Wno-unused-function -std=gnu++0x
77
SRCDIR = ./src
88
INCLUDEDIR = -I./include -I.
99
DEPS =
@@ -68,7 +68,8 @@ PROGRAMS = m_based_demo \
6868
bubble_sort_demo \
6969
selection_sort_demo \
7070
8queue_demo \
71-
palindrome_demo
71+
palindrome_demo \
72+
suffix_array_demo
7273

7374
all: $(PROGRAMS)
7475

0 commit comments

Comments
 (0)