#SYI Engine Makefile

SRC=boot.cpp scripting.cpp

# make the following line "EXE=engine.exe" for windows machines
EXE=engine

CC=g++
CFLAGS=-Wall

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