CC=gcc
CXX=g++
PLATFORM = $(shell file /bin/ls | cut -d' ' -f3 | cut -d'-' -f1)
BSD_VERSION = $(shell uname -v 2>&1 | cut -d' ' -f2 | cut -d'.' -f1)
default: libthecore libpoly libgame liblua libsql game db
@echo "--------------------------------------"
@echo "Build Done"
@echo...