Compare commits

..

No commits in common. "9ebc00b0afbba07e4bf39a6d509338ce41114772" and "2989acd716445d1437586534eb91db73f40317de" have entirely different histories.

3 changed files with 5 additions and 9 deletions

View File

@ -1,10 +1,10 @@
source = $(shell find ./ -name "*.cpp")
headers = $(shell find ./ -name "*.h")
source = $(wildcard ./src/*.cpp)
headers = $(wildcard ./src/*.h)
main: $(source) $(headers)
c++ $(source) $(headers) -o ./bin/minecraft -Wall -Wextra
c++ $(source) $(headers) -o ./bin/minecraft -Wall -Wextra -Werror
clean:
rm -rv bin/
rm -r bin/
mkdir bin/
touch bin/.placeholder
touch bin/.placeholder

View File

@ -1,4 +0,0 @@
# Tests
## servers.dat
My current servers.dat as pulled from my Minecraft installation. Used for testing the NBT library until we have something better.

Binary file not shown.