# rename the base aros logo image to aros_600x300. # add a smaller version (300x150). # rename the target logo for AROS to IMAGES:Logos/AROS.logo # adjust the mmakefile.src to copy the smaller logo for 'classic' prefs set systems, and the larger version otherwise.

This commit is contained in:
Kalamatee 2020-01-13 01:22:07 +00:00 committed by deadwood
parent 9d2fde8d2d
commit 2e087e6f56
3 changed files with 17 additions and 3 deletions

BIN
images/AROS_300x150.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -1,10 +1,24 @@
# Copyright © 2008, The AROS Development Team. All rights reserved.
# Copyright © 2008-2020, The AROS Development Team. All rights reserved.
# $Id$
include $(SRCDIR)/config/aros.cfg
#MM- workbench-complete : workbench-images workbench-images-themes
#MM- workbench-complete : workbench-images
#MM- workbench-images : workbench-images-copylogo workbench-images-themes
%copy_files_q mmake=workbench-images files="$(call WILDCARD, *.png *.jpg)" dst=$(AROS_IMAGES)
ifneq ($(AROS_PREFS_SET),classic)
AROSLOGOFILE:=AROS_600x300.png
else
AROSLOGOFILE:=AROS_300x150.png
endif
$(AROS_IMAGES)/Logos/AROS.logo : $(SRCDIR)/$(CURDIR)/$(AROSLOGOFILE)
@if [ -f $< ]; then \
$(MKDIR) $(dir $@) ; \
$(CP) $< $@ ; \
fi
#MM
workbench-images-copylogo : $(AROS_IMAGES)/Logos/AROS.logo
%copy_dir_recursive mmake=workbench-images-themes src=$(SRCDIR)/images/Themes dst=$(AROS_THEMES)