Commit 4e12e64317efe6d68e7e859b3963eb9151af2b1c

Authored by Geoffrey PREUD'HOMME
1 parent 63f92223

Ajout logo PNG

Showing 2 changed files with 6 additions and 2 deletions   Show diff stats
.gitignore
1 1 node_modules
2 2 public/libs
3   -config/*
4 3 \ No newline at end of file
  4 +public/img/logo.png
  5 +config/*
... ...
Makefile
1   -all: config/ci_com_pub.pem config/session_secret
  1 +all: config/ci_com_pub.pem config/session_secret public/img/logo.png
2 2  
3 3 config/ci_com_pub.pem: config/ci_com.pem
4 4 openssl rsa -pubout -in $< -out $@
... ... @@ -10,3 +10,6 @@ config/ci_com.pem:
10 10  
11 11 config/session_secret:
12 12 cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 > $@
  13 +
  14 +public/img/logo.png: public/img/logo.svg
  15 + convert $< $@
... ...