CC = gcc
CCFLAGS = -g -Wall 
OBJ = Automaton.o 


testAutomaton : testAutomaton.c $(OBJ)
	$(CC) $(CCFLAGS) -o testAutomaton testAutomaton.c $(OBJ)

Automaton.o : Automaton.c Automaton.h
	$(CC) $(CCFLAGS) -c Automaton.c 

clean:
	- rm testAutomaton
	- rm -f *.o

