From 5c613a04d30489a88368ca620d29cb9cd2620454 Mon Sep 17 00:00:00 2001 From: Kamil Rytarowski Date: Wed, 18 Apr 2012 20:20:03 +0000 Subject: - add Makefile --- Makefile | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..02190d3 --- /dev/null +++ b/Makefile @@ -0,0 +1,51 @@ +PACKAGE = drakx-installer-help +VERSION = 2.7 +SVNPATH = svn+ssh://svn.mageia.org/svn/soft/$(PACKAGE) + +HTML_FILES = acceptLicense.html \ + addUser.html \ + ask_mntpoint_s.html \ + choosePackages.html \ + diskdrake.html \ + doPartitionDisks.html \ + exitInstall.html \ + formatPartitions.html \ + index.html \ + installer.html \ + installUpdates.html \ + misc-params.html \ + resizeFATChoose.html \ + selectInstallClass.html \ + selectKeyboard.html \ + selectLanguage.html \ + selectMouse.html \ + setupBootloaderBeginner.html \ + setupSCSI.html \ + setupX.html \ + takeOverHdChoose.html \ + takeOverHdConfirm.html + +PNG_FILES = draft.png \ + note.png \ + tip.png \ + warning.png + +FILES = $(HTML_FILES) $(PNG_FILES) COPYING NEWS README + +clean: + rm -f *~ \#*\# + +cleandist: clean + rm -fr $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.xz + +dir: + mkdir $(PACKAGE)-$(VERSION) + +localcopy: + tar c --exclude=.svn $(FILES) | tar x -C $(PACKAGE)-$(VERSION) + +tar: + tar cvYf $(PACKAGE)-$(VERSION).tar.xz $(PACKAGE)-$(VERSION) + rm -fr $(PACKAGE)-$(VERSION) + +dist: cleandist dir localcopy tar -- cgit v1.2.1