/*----------------------------------------------------------
 *	for line parser
 *	(C) Copyright By Hitoshi YAMAUCHI   
 *	1997ǯ11 7()
 *----------------------------------------------------------*/
C++    = g++		# for /usr/local/bin/make (gnu make)
CXX    = g++
CC     = g++	

/*
 * libs
 */
LOCAL_LIBRARIES += 
SYS_LIBRARIES   += -lm
DEPEND  = true

/*
 * for DEBUG
 */
/*
	CDEBUGFLAGS     += -Wwrite-strings
	CXXDEBUGFLAGS    = $(CDEBUGFLAGS)
*/
/* CDEBUGFLAGS      = -Wall -pg -DNDEBUG */
CDEBUGFLAGS      = -g -Wall -DTEST_LINE_PARSER 
/* CDEBUGFLAGS      = -Wall -DNDEBUG -O2 */
CXXDEBUGFLAGS    = $(CDEBUGFLAGS)

/*
 * FLAGS
 */
CFLAGS		+= 
CXXFLAGS	= $(CFLAGS)

/*
 * sources and objects
 */
FILES = lineParser.cc getvals.cc myString.cc

OBJS  = ${FILES:.cc=.o}

ComplexCplusplusProgramTarget(lineparser)

depend:: 
	g++ -MM $(CFLAGS) $(FILES) > Makefile.depend


Makefiles::
	@echo "no need to make Makefiles"
	

includes::
	@echo "no need to make includes"
	
#
#----- DO NOT EDIT 
/* include Makefile.depend */
