CC	= g++
CFLAGS 	= -02
CFLAGS	= -g 
TARGET 	= gml2list
OBJS	= convert.o

$(TARGET):	$(OBJS)
		$(CC) -o $(TARGET) $(OBJS)

convert.o:	convert.cpp stdinc.h
		$(CC) $(CLAGS) -c convert.cpp

