]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - INSTALL
Cleanups
[xonotic/gmqcc.git] / INSTALL
diff --git a/INSTALL b/INSTALL
index 14afea4d8fe4b854ad7ac15b38dd649107ed9697..ffd45bd08ac868f5bc51917bd8655c123a2d5f65 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -2,18 +2,23 @@
 
 1. Prerequisites
     - A C-Compiler such as gcc or clang
 
 1. Prerequisites
     - A C-Compiler such as gcc or clang
-    - GNU Make. This document will assume GNU-Make to be executed via
-      `make'. On BSD systems you probably have to use `gmake' instead.
+    - GNU Make or BSD Make
 
 2. Compilation
 
 2. Compilation
-    Run the GNU make program `make' or `gmake'.
-
+    If using GNU make program
         make
 
         make
 
+    If using BSD make program, the BSDmakefile should be
+    used instead when you invoke make, if however it ignores BSDmakefile
+    you can supply it with -f.
+
+        make -f BSDmakefile
+
     If no error appears, the following binary files will have been
     created:
         - gmqcc
         - qcvm
     If no error appears, the following binary files will have been
     created:
         - gmqcc
         - qcvm
+        - gmqpak
 
 3. Installation
     The `install' target will install the 2 binaries to /usr/local/bin
 
 3. Installation
     The `install' target will install the 2 binaries to /usr/local/bin
         make DESTDIR=$pkgdir install
 
 
         make DESTDIR=$pkgdir install
 
 
-
     ArchLinux PKGBUILDs (release and git build) can be found in the
     ArchLinux PKGBUILDs (release and git build) can be found in the
-    respective folders in ./distro/arch
+    respective folders in ./distro/archlinux
+    
+    ArchBSD PKGBUILDs (release and git build) can be found in the
+    respective folders in ./distro/archbsd
+
+    Slackware SlackBuilds (git build) can be found in ./distro/slackware
+    
+    Gentoo ebuilds (release) can be found in ./distro/gentoo, as well
+    as a README explaining how to build them
+    
+    Debian archives (git build) can be created invoking make in
+    ./distro/deb
+
+    Fedora spec files (release) can be found in ./distro/fedora, as well
+    as a README explaining how to build them.