FOSS-VG/Makefile

6 lines
162 B
Makefile
Raw Normal View History

2022-06-24 07:20:04 +02:00
source = $(wildcard ./src/*.cpp)
headers = $(wildcard ./src/*.hpp)
main: $(source) $(headers)
c++ $(source) $(headers) -o ./bin/minecraft -Wall -Wextra -Werror