comparison c/regexParser/Makefile @ 139:6c258910cacb pairPro

remove some warning and error
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 07 Dec 2015 02:20:13 +0900
parents 15815fcb6c2f
children d1ebba6e117a
comparison
equal deleted inserted replaced
138:ea2810db8d87 139:6c258910cacb
1 TARGET= regexParser 1 TARGET= regexParser
2 CFLAGS= -Wall -O0 -g 2 CFLAGS= -Wall -O0 -g
3 CC= clang++ 3 CC= clang++
4 4
5 SRCS_TMP = $(wildcard *.cc) 5 SRCS_TMP = $(wildcard *.cc)
6 SRCS_EXCLUDE = determinize.cc subsetConstraction.cc 6 SRCS_EXCLUDE = determinize.cc
7 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) 7 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
8 OBJS = $(SRCS:.cc=.o) 8 OBJS = $(SRCS:.cc=.o)
9 9
10 .SUFFIXES: .cc .o 10 .SUFFIXES: .cc .o
11 11