aboutsummaryrefslogtreecommitdiffstats
path: root/tinyxml2/makefile
blob: 3613b794601a22e8f6a96cc733086183dff57df7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
######################################INCLUDES#################################
include ../macros.mk

######################################RULES####################################
.DEFAULT: tinyxml2

.PHONY: tinyxml2

tinyxml2.o: tinyxml2.cpp
	$(CXX) $(CXX_FLAGS) -c $< -o $@	

clean:
	rm -f *.o