FOSS-VG/Makefile

6 lines
160 B
Makefile
Raw Normal View History

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