aboutsummaryrefslogblamecommitdiff
path: root/source/Makefile
blob: a6472d542588be7313dce8e428f61ceb2e1fe0c6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11





                                                                     




                                                                     

    
                            

                
                               

            

                                                                                                                   
                                                                                                 
                                                                                           
                                                                                                 
                                                                                                   
                                                                                                  
 
                                                                     
# Source package makefile for Cryptech Alpha board software.
#
# This is, deliberately, a very simplified Makefile.  for the most
# part we just want to do the bare minimum needed for whatever
# software packaging system we use to work.  At least for the moment,
# the primary packaging system is Debian-based, so this is written
# to work in that environment.
#
# We also support Homebrew for MacOSX, using the source tarball
# generated by the Debian packaging process, but the Homebrew formula
# handles the build and installation for that environment.

all:
	${MAKE} -C sw/pkcs11

clean distclean:
	${MAKE} -C sw/pkcs11 $@

install: all
	install -D -m 644 cryptech-alpha-firmware.tar.gz	${DESTDIR}/usr/share/cryptech-alpha-firmware.tar.gz
	install -D -m 644 sw/pkcs11/libpkcs11.so		${DESTDIR}/usr/lib/libpkcs11.so
	ln	-s	            libpkcs11.so		${DESTDIR}/usr/lib/libpkcs11.so.0
	install -D	  sw/pkcs11/p11util			${DESTDIR}/usr/sbin/p11util
#	install -D	  sw/pkcs11/libhal/cryptech_rpcd	${DESTDIR}/usr/sbin/cryptech_rpcd
	install -D	  sw/stm32/projects/hsm/cryptech_upload ${DESTDIR}/usr/sbin/cryptech_upload
	install -D	  sw/stm32/projects/hsm/cryptech_probe  ${DESTDIR}/usr/sbin/cryptech_probe

# Still need scripts to do something useful with the firmware tarball