aboutsummaryrefslogtreecommitdiff
path: root/tools/depends/target/cmakebuildsys/Makefile
blob: 1b3207eafaa3be13537d387a3109f4cc6da1f2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-include ../../Makefile.include

VERSION.TXT := $(XBMCROOT)/version.txt
APP_NAME=$(shell awk '/APP_NAME/ {print tolower($$2)}' $(VERSION.TXT))

all:
	mkdir -p $(XBMCROOT)/build
	cd $(XBMCROOT)/build; $(CMAKE) -DCMAKE_BUILD_TYPE=$(Configuration) $(XBMCROOT)/project/cmake

clean:
	cd $(XBMCROOT)/build; $(MAKE) clean

distclean:
	cd $(XBMCROOT)/build; $(MAKE) clean