#Makefile for engine.exe

SRC=boot.cpp configRead.cpp scripting.cpp
EXE=engine.exe

CC=g++
CFLAGS=-Wall

all:
	$(CC) $(CFLAGS) $(SRC) -o $(EXE)