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

7 years ago
  1. ANACONDADATADIR = /usr/share/anaconda
  2. ANACONDABOOTDIR = $(ANACONDADATADIR)/boot
  3. all:
  4. @echo "Nothing to do."
  5. splash.lss: syslinux-splash.png
  6. ./splashtolss.sh syslinux-splash.png splash.lss
  7. install:
  8. @if [ "$(DESTDIR)" = "" ]; then \
  9. echo " "; \
  10. echo "ERROR: A destdir is required"; \
  11. exit 1; \
  12. fi
  13. mkdir -p $(DESTDIR)/$(ANACONDADATADIR)
  14. mkdir -p $(DESTDIR)/$(ANACONDABOOTDIR)
  15. mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
  16. install -m 644 anaconda_header.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
  17. install -m 644 progress_first.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
  18. install -m 644 splash.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
  19. install -m 644 syslinux-splash.png $(DESTDIR)/$(ANACONDABOOTDIR)/syslinux-splash.png
  20. install -m 644 syslinux-vesa-splash.png $(DESTDIR)/$(ANACONDABOOTDIR)/splash.png
  21. install -m 644 sidebar-logo.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
  22. install -m 644 sidebar-bg.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
  23. install -m 644 topbar-bg.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
  24. clean:
  25. rm -f splash.lss