aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile51
1 files changed, 51 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..9ff0258
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,51 @@
+PACKAGE = drakx-installer-help
+VERSION = 2.10
+
+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 \
+ setupBootloaderExpert.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 Makefile 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