diff options
author | Paul Selkirk <paul@psgd.org> | 2016-07-06 14:46:26 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2016-07-06 14:46:26 -0400 |
commit | 2864813c35d2ce295468775b6091bda9ef2245a1 (patch) | |
tree | 58799f4899317ab994d77535546e8a7d56c2dee0 /libraries/libtfm/tomsfastmath/Makefile | |
parent | 833802c921a53d1ee6a71049943edaebd1466d1b (diff) |
Simplify library Makefiles by using symbols defined in top-level Makefile, rather than re-deriving them.
Diffstat (limited to 'libraries/libtfm/tomsfastmath/Makefile')
-rw-r--r-- | libraries/libtfm/tomsfastmath/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/libraries/libtfm/tomsfastmath/Makefile b/libraries/libtfm/tomsfastmath/Makefile index 7141763..695aa92 100644 --- a/libraries/libtfm/tomsfastmath/Makefile +++ b/libraries/libtfm/tomsfastmath/Makefile @@ -1,8 +1,4 @@ -ifndef CRYPTECH_ROOT - CRYPTECH_ROOT := $(abspath ../../../../..) -endif +vpath %.c ${LIBTFM_SRC}/tomsfastmath +vpath %.h ${LIBTFM_SRC}/tomsfastmath -vpath %.c ${CRYPTECH_ROOT}/sw/thirdparty/libtfm/tomsfastmath -vpath %.h ${CRYPTECH_ROOT}/sw/thirdparty/libtfm/tomsfastmath - -include ${CRYPTECH_ROOT}/sw/thirdparty/libtfm/tomsfastmath/makefile +include ${LIBTFM_SRC}/tomsfastmath/makefile |