From 6af80c513c4da79bd4e5b7abb32d686db89bc295 Mon Sep 17 00:00:00 2001 From: "syeon.hwang" Date: Thu, 15 Mar 2012 16:51:44 +0900 Subject: [PATCH] [Title] Enhancement Makefile and ignore tizen/Emulator [Type] [Module] Emulator/ [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] --- .gitignore | 2 +- tizen/Makefile | 10 ++++++++-- tizen/src/Makefile | 6 +++++- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 37b56fc957..3e3e2f35a0 100644 --- a/.gitignore +++ b/.gitignore @@ -76,4 +76,4 @@ cscope.* tags TAGS *~ -tizen/distrib/temp/dev/emul-skin.properties +tizen/Emulator diff --git a/tizen/Makefile b/tizen/Makefile index e51db95529..b923334bf6 100644 --- a/tizen/Makefile +++ b/tizen/Makefile @@ -1,6 +1,12 @@ -all: - cd src && $(MAKE) +qemu: + cd src && $(MAKE) qemu +skin_client: + cd src && $(MAKE) skin_client clean: cd src && $(MAKE) clean +distclean: + cd src && $(MAKE) distclean +all: + cd src && $(MAKE) install: cd src && $(MAKE) install diff --git a/tizen/src/Makefile b/tizen/src/Makefile index 8901fd550e..a9af49294d 100644 --- a/tizen/src/Makefile +++ b/tizen/src/Makefile @@ -1,10 +1,14 @@ EMUL_DIR=../Emulator -all: +qemu: cd ../../ && $(MAKE) +skin_client: ant -buildfile skin/client/build.xml +all: qemu skin_client clean: cd ../../ && $(MAKE) clean +distclean: + cd ../../ && $(MAKE) distclean install: all mkdir -p $(EMUL_DIR)/bin mkdir -p $(EMUL_DIR)/etc -- 2.34.1