summaryrefslogtreecommitdiffstats
path: root/anaconda/Makefile
diff options
context:
space:
mode:
authorTom "spot" Callaway <tcallawa@redhat.com>2008-09-10 16:22:29 -0400
committerTom "spot" Callaway <tcallawa@redhat.com>2008-09-10 16:22:29 -0400
commit83a12685b658a325dccd60dabf7e2fda3cee1664 (patch)
tree4e2eaa890b0612e26546c128536d1597fd323138 /anaconda/Makefile
downloadfedora-logos-83a12685b658a325dccd60dabf7e2fda3cee1664.tar.gz
fedora-logos-83a12685b658a325dccd60dabf7e2fda3cee1664.tar.xz
fedora-logos-83a12685b658a325dccd60dabf7e2fda3cee1664.zip
initial git commit
Diffstat (limited to 'anaconda/Makefile')
-rw-r--r--anaconda/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/anaconda/Makefile b/anaconda/Makefile
new file mode 100644
index 0000000..7f4c8dc
--- /dev/null
+++ b/anaconda/Makefile
@@ -0,0 +1,27 @@
+ANACONDADATADIR = /usr/share/anaconda
+ANACONDARUNTIMEDIR = /usr/lib/anaconda-runtime
+
+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)/$(ANACONDADATADIR)/pixmaps
+ install -m 644 *.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
+
+ mkdir -p $(DESTDIR)/$(ANACONDARUNTIMEDIR)/boot
+ install -m 644 syslinux-splash.png $(DESTDIR)/$(ANACONDARUNTIMEDIR)/boot/syslinux-splash.png
+ install -m 755 splashtolss.sh $(DESTDIR)/$(ANACONDARUNTIMEDIR)
+ install -m 644 syslinux-vesa-splash.jpg $(DESTDIR)/$(ANACONDARUNTIMEDIR)
+
+clean:
+ rm -f splash.lss