Makefile: standalone-src should be cleaned befor qemu distclean
authorSeokYeon Hwang <syeon.hwang@samsung.com>
Mon, 14 Sep 2015 05:12:00 +0000 (14:12 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Mon, 14 Sep 2015 13:32:42 +0000 (22:32 +0900)
A "clean" in standalone-src is depend on "config-host.mak". So it should
be run before qemu distclean, since qemu distclean remove "config-host.mak"

Change-Id: I87e6f097863ed3aec0a99f0be9b9f394902ea298
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
tizen/Makefile

index 953b8d38b1869c7e0e04216ecd5882f264b93f2c..44be458d07c62c4146738b8873c69ee958249809 100644 (file)
@@ -5,8 +5,8 @@ clean:
        cd src && $(MAKE) clean
        cd standalone-src && $(MAKE) clean
 distclean:
-       cd src && $(MAKE) distclean
        cd standalone-src && $(MAKE) clean
+       cd src && $(MAKE) distclean
 install:
        cd src && $(MAKE) install
        cd standalone-src && $(MAKE) install