diff options
author | Dan Handley <dan.handley@arm.com> | 2014-04-09 12:48:25 +0100 |
---|---|---|
committer | Dan Handley <dan.handley@arm.com> | 2014-05-06 12:35:02 +0100 |
commit | 4ecca33988b90de43ec4f4a929094a38a23fda31 (patch) | |
tree | ad1fa01314b562bfbdac77a39451ef7967c0ff03 /bl2/bl2.mk | |
parent | b495bdef190acf166c713e138b61c5bb25402fc0 (diff) | |
download | platform_external_arm-trusted-firmware-4ecca33988b90de43ec4f4a929094a38a23fda31.tar.gz platform_external_arm-trusted-firmware-4ecca33988b90de43ec4f4a929094a38a23fda31.tar.bz2 platform_external_arm-trusted-firmware-4ecca33988b90de43ec4f4a929094a38a23fda31.zip |
Move include and source files to logical locations
Move almost all system include files to a logical sub-directory
under ./include. The only remaining system include directories
not under ./include are specific to the platform. Move the
corresponding source files to match the include directory
structure.
Also remove pm.h as it is no longer used.
Change-Id: Ie5ea6368ec5fad459f3e8a802ad129135527f0b3
Diffstat (limited to 'bl2/bl2.mk')
-rw-r--r-- | bl2/bl2.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bl2/bl2.mk b/bl2/bl2.mk index d53c1aa15..3ecaff9e5 100644 --- a/bl2/bl2.mk +++ b/bl2/bl2.mk @@ -32,12 +32,10 @@ vpath %.c common \ lib \ plat/${PLAT} \ plat/${PLAT}/${ARCH} \ - arch/${ARCH} \ ${PLAT_BL2_C_VPATH} -vpath %.S lib/arch/${ARCH} \ - include \ - lib/sync/locks/exclusive \ +vpath %.S lib/${ARCH} \ + lib/locks/exclusive \ common/${ARCH} \ ${PLAT_BL2_S_VPATH} |