Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
makefile 283 B
source: *.cpp
	@echo Compiling sources...
	@cp ./libtcod/*.so .
	@g++ -g *.cpp -o RogueReborn.exe -I./libtcod/include -L. -ltcod -ltcodxx -Wl,-rpath=. -Wall -std=c++11
	@make source -C test

clean:
	@rm -f RogueReborn.exe *.so
	@rm -f scores.txt
	@make clean -C test

default: source