tillitis / tkey-libs

TKey device libs
GNU General Public License v2.0
4 stars 2 forks source link

Build library .a files on top level #14

Closed mchack-work closed 1 year ago

mchack-work commented 1 year ago

Instead of having to do:

  -L $(LIBDIR)/libcrt0 -L $(LIBDIR)/libcommon/ -lcrt -lcommon

A user can now just do:

  -L $(LIBDIR)  -lcrt -lcommon

Please see https://github.com/tillitis/dev-tillitis/pull/23 for changes to the Dev Handbook.

dehanj commented 1 year ago

Small fix on make clean

-       rm -f monocypher/libmonocypher.a $(MONOOBJS)
+       rm -f libmonocypher.a $(MONOOBJS)