aboutsummaryrefslogtreecommitdiffstats
path: root/lib/entityx/build/Makefile
blob: 9f45d7ebd55db42a1087c7e5bc980ab28469cdb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
INC = -I..
FLG = -std=gnu++11

all:
	g++ $(INC) $(FLG) -c ../entityx/help/Pool.cc -o Pool.o
	g++ $(INC) $(FLG) -c ../entityx/help/Timer.cc -o Timer.o
	g++ $(INC) $(FLG) -c ../entityx/Event.cc -o Event.o
	g++ $(INC) $(FLG) -c ../entityx/Entity.cc -o Entity.o
	g++ $(INC) $(FLG) -c ../entityx/System.cc -o System.o
	ar rvs ../../libentityx.a *.o