# Makefile for moiforth

CC	=	gcc
OBJS	=	main.c

moiforth.exe: $(OBJS)
	$(CC) -o $@ $(OBJS)

.c.o:
	$(CC) -c $<

clean:
	rm moiforth.exe *.o

