[Title] Fix Makefile problem (make did not run ant)
authorsyeon.hwang <syeon.hwang@samsung.com>
Thu, 15 Mar 2012 09:18:18 +0000 (18:18 +0900)
committersyeon.hwang <syeon.hwang@samsung.com>
Thu, 15 Mar 2012 09:18:18 +0000 (18:18 +0900)
[Type]
[Module] Emulator/
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

tizen/Makefile
tizen/src/Makefile

index b923334bf6f1816dd60c78a0e7136cc0cd20ec8f..e0a4844e1956b97f263e137e4dde2df0a70d2c17 100644 (file)
@@ -1,3 +1,5 @@
+all:
+       cd src && $(MAKE)
 qemu:
        cd src && $(MAKE) qemu
 skin_client:
@@ -6,7 +8,5 @@ clean:
        cd src && $(MAKE) clean
 distclean:
        cd src && $(MAKE) distclean
-all:
-       cd src && $(MAKE)
 install:
        cd src && $(MAKE) install
index 4945ad80877065595bf166ec3ea4c17d6e2a95eb..0ac6c6dd73cc5430470d745e5c28c3c21274f4b3 100644 (file)
@@ -1,10 +1,10 @@
 EMUL_DIR=../Emulator
 
+all: qemu skin_client
 qemu:
        cd ../../ && $(MAKE)
 skin_client:
        ant -buildfile skin/client/build.xml
-all: qemu skin_client
 clean:
        cd ../../ && $(MAKE) clean
 distclean: