live-build/Makefile

50 lines
1.3 KiB
Makefile
Raw Normal View History

2007-09-23 08:04:20 +00:00
# Makefile
2007-09-23 08:04:21 +00:00
all: install
2007-09-23 08:04:20 +00:00
install:
2007-09-23 08:04:21 +00:00
# Installing make-live
@# Install main script
install -D -m 0755 src/main.sh $(DESTDIR)/usr/sbin/make-live
2007-09-23 08:04:20 +00:00
2007-09-23 08:04:21 +00:00
@# Install configuration file
install -D -m 0644 src/config $(DESTDIR)/etc/make-live.conf
2007-09-23 08:04:20 +00:00
2007-09-23 08:04:21 +00:00
@# Install package lists
install -d -m 0755 $(DESTDIR)/usr/share/make-live/lists
install -m 0644 src/lists/* $(DESTDIR)/usr/share/make-live/lists
2007-09-23 08:04:20 +00:00
2007-09-23 08:04:21 +00:00
@# Install sub scripts
install -d -m 0755 $(DESTDIR)/usr/share/make-live/scripts
install -m 0755 src/scripts/*.sh $(DESTDIR)/usr/share/make-live/scripts
2007-09-23 08:04:20 +00:00
2007-09-23 08:04:21 +00:00
@# Install templates
cp -r templates $(DESTDIR)/usr/share/make-live
2007-09-23 08:04:20 +00:00
2007-09-23 08:04:22 +00:00
@# Install documentation
install -d -m 0755 $(DESTDIR)/usr/share/doc/live-package
install -m 0644 doc/*.txt $(DESTDIR)/usr/share/doc/live-package
2007-09-23 08:04:21 +00:00
@# Install manpages
install -d -m 0755 $(DESTDIR)/usr/share/man/man8
2007-09-23 08:04:21 +00:00
install -m 0644 doc/man/*.8 $(DESTDIR)/usr/share/man/man8
2007-09-23 08:04:20 +00:00
uninstall:
2007-09-23 08:04:21 +00:00
# Uninstalling make-live
@# Remove main script
rm -f $(DESTDIR)/usr/sbin/make-live
2007-09-23 08:04:20 +00:00
2007-09-23 08:04:21 +00:00
@# Remove configuration file
rm -f $(DESTDIR)/etc/make-live.conf
2007-09-23 08:04:20 +00:00
2007-09-23 08:04:21 +00:00
@# Remove shared data
rm -rf $(DESTDIR)/usr/share/make-live
2007-09-23 08:04:22 +00:00
@# Remove documentation
rm -rf $(DESTDIR)/usr/share/doc/live-package
2007-09-23 08:04:21 +00:00
@# Remove manpages
rm -f $(DESTDIR)/usr/share/man/man8/make-live.*
2007-09-23 08:04:20 +00:00
reinstall: uninstall install