FOSS-VG/Makefile

11 lines
223 B
Makefile
Raw Normal View History

2022-06-24 08:08:41 +02:00
source = $(shell find ./ -name "*.cpp")
headers = $(shell find ./ -name "*.h")
2022-06-24 07:20:04 +02:00
main: $(source) $(headers)
2022-06-24 08:08:41 +02:00
c++ $(source) $(headers) -o ./bin/minecraft -Wall -Wextra
2022-06-24 07:25:52 +02:00
clean:
2022-06-24 08:08:41 +02:00
rm -rv bin/
2022-06-24 07:25:52 +02:00
mkdir bin/
2022-06-24 08:08:41 +02:00
touch bin/.placeholder