aboutsummaryrefslogtreecommitdiff
path: root/sw/Makefile
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2015-07-07 14:58:27 -0400
committerRob Austein <sra@hactrn.net>2015-07-07 14:58:27 -0400
commit31b6ce8bef7235667e71d830cda98d9350912883 (patch)
tree2bbb9aac83b51cd5a1528694873d4f1c8831f46f /sw/Makefile
parent1503f72a4756e4da0494a0f957ad5b74f21b3756 (diff)
Track library move into sw/ tree.
Diffstat (limited to 'sw/Makefile')
-rw-r--r--sw/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/Makefile b/sw/Makefile
index da59b70..9e2efaa 100644
--- a/sw/Makefile
+++ b/sw/Makefile
@@ -36,10 +36,10 @@ export AR := arm-linux-gnueabihf-ar
export OBJCOPY := arm-linux-gnueabihf-objcopy
all:
- cd libtfm; ${MAKE}
- cd libhal; ${MAKE}
- cd sqlite3; ${MAKE} CROSS_COMPILE=arm-unknown-linux-gnueabi
- cd pkcs11; ${MAKE}
+ cd thirdparty/sqlite3; ${MAKE} CROSS_COMPILE=arm-unknown-linux-gnueabi
+ cd thirdparty/libtfm; ${MAKE}
+ cd libhal; ${MAKE}
+ cd pkcs11; ${MAKE}
clean distclean:
for d in libtfm libhal sqlite3 pkcs11; do (cd $$d && ${MAKE} $@); done