Fedora Remix maintained by the Rochester Institute of Technology (RIT) Linux Users Group, targeted at users new to Linux and RIT students, faculty, and staff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
1.0 KiB

ANACONDADATADIR = /usr/share/anaconda
ANACONDABOOTDIR = $(ANACONDADATADIR)/boot
all:
@echo "Nothing to do."
splash.lss: syslinux-splash.png
./splashtolss.sh syslinux-splash.png splash.lss
install:
@if [ "$(DESTDIR)" = "" ]; then \
echo " "; \
echo "ERROR: A destdir is required"; \
exit 1; \
fi
mkdir -p $(DESTDIR)/$(ANACONDADATADIR)
mkdir -p $(DESTDIR)/$(ANACONDABOOTDIR)
mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
install -m 644 anaconda_header.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
install -m 644 progress_first.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
install -m 644 splash.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
install -m 644 syslinux-splash.png $(DESTDIR)/$(ANACONDABOOTDIR)/syslinux-splash.png
install -m 644 syslinux-vesa-splash.png $(DESTDIR)/$(ANACONDABOOTDIR)/splash.png
install -m 644 sidebar-logo.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
install -m 644 sidebar-bg.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
install -m 644 topbar-bg.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
clean:
rm -f splash.lss