CC = gcc
CFLAGS = -Wall

all: LMParser

LMParser: LMParser.o

LMparser.o: LMParser.c LMParser.h	

clean:
	rm -f LMParser LMParser.o
