Archived
1
0
This repository has been archived on 2020-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
rero-ils-css/Makefile
Olivier DOSSMANN d2021d368c Initial commit
* Adds rero-ils CSS files for customization
* Adds specific logos for normal instances and pilots

Co-Authored-by: Olivier DOSSMANN <git@dossmann.net>
2020-01-23 11:11:21 +01:00

19 lines
411 B
Makefile

Q=@
all: static.tar.gz static-pilot.tar.gz
static.tar.gz:
$Qmkdir static
$Qcp -r ils static/
$Qtar cfz static.tar.gz static/
static-pilot.tar.gz: logo-global.pilot.png
$Qmkdir static-pilot
$Qcp -r ils static-pilot/
$Qcp logo-global.pilot.png static-pilot/ils/images/logo-global.png
$Qtar cfz static-pilot.tar.gz static-pilot/
clean:
$Qrm -rf static/ static-pilot/ static.tar.gz static-pilot.tar.gz