]> AND Private Git Repository - Cipher_code.git/blob - Arduino/libraries/AES-master/examples_Rpi/Makefile
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
a ze
[Cipher_code.git] / Arduino / libraries / AES-master / examples_Rpi / Makefile
1 #############################################################################
2 #
3 # Makefile for AES examples on Raspberry Pi
4 #
5 # License: GPL (General Public License)
6 # Author:  gnulnulf <arco@appeltaart.mine.nu>
7 # Date:    2013/02/07 (version 1.0)
8 #
9 # Description:
10 # ------------
11 # use make all and make install to install the examples
12 # You can change the install directory by editing the prefix line
13 #
14 prefix := /usr/local
15
16 # The recommended compiler flags for the Raspberry Pi
17 CCFLAGS=-Ofast -mfpu=vfp -mfloat-abi=hard -march=armv6zk -mtune=arm1176jzf-s
18 #CCFLAGS=
19
20 # define all programs
21 PROGRAMS = aes test_vectors
22 SOURCES = ${PROGRAMS:=.cpp}
23
24 all: ${PROGRAMS}
25
26 ${PROGRAMS}: ${SOURCES}
27         g++ ${CCFLAGS} -Wall -I../ -lAES $@.cpp -o $@
28
29 clean:
30         rm -rf $(PROGRAMS)
31
32 install: all
33         test -d $(prefix) || mkdir $(prefix)
34         test -d $(prefix)/bin || mkdir $(prefix)/bin
35         for prog in $(PROGRAMS); do \
36           install -m 0755 $$prog $(prefix)/bin; \
37         done
38
39 .PHONY: install