Added makefile

BodgeMaster-unfinished
Milansuman 2022-06-24 10:50:04 +05:30
parent 54c34d2a98
commit 3fb2794dbc
1 changed files with 5 additions and 0 deletions

5
Makefile Normal file
View File

@ -0,0 +1,5 @@
source = $(wildcard ./src/*.cpp)
headers = $(wildcard ./src/*.hpp)
main: $(source) $(headers)
c++ $(source) $(headers) -o ./bin/minecraft -Wall -Wextra -Werror