FOSS-VG/Makefile

10 lines
215 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
2022-06-24 07:25:52 +02:00
clean:
rm -r bin/
mkdir bin/
touch bin/.placeholder