diff options
-rw-r--r-- | Makefile | 51 |
1 files changed, 51 insertions, 0 deletions
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 |