summaryrefslogtreecommitdiffstats
path: root/stone_soup/crawl-ref/source/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'stone_soup/crawl-ref/source/makefile')
-rw-r--r--stone_soup/crawl-ref/source/makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/stone_soup/crawl-ref/source/makefile b/stone_soup/crawl-ref/source/makefile
deleted file mode 100644
index 9dc90ac5ad..0000000000
--- a/stone_soup/crawl-ref/source/makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# Modified for Crawl Reference by $Author$ on $Date$
-#
-
-#Makefile chooser. Choose one:
-
-MAKEFILE = makefile.lnx
-#MAKEFILE = makefile.sgi
-#MAKEFILE = makefile.dos
-#MAKEFILE = makefile.emx
-#MAKEFILE = makefile.sol
-#MAKEFILE = makefile.osx
-#MAKEFILE = makefile.mgw
-
-#jmf: number of concurrent jobs -- good value is (#_of_CPUs * 2) + 1
-# cuts build time a lot on multi-cpu machines
-#OTHER=-j2
-
-all:
- $(MAKE) $(OTHER) -f $(MAKEFILE) EXTRA_FLAGS='-O2 -fno-strength-reduce'
-
-noopt:
- $(MAKE) $(OTHER) -f $(MAKEFILE)
-
-install:
- $(MAKE) $(OTHER) -f $(MAKEFILE) install
-
-clean:
- $(MAKE) $(OTHER) -f $(MAKEFILE) clean
-
-distclean:
- $(MAKE) $(OTHER) -f $(MAKEFILE) distclean
-
-# WIZARD mode currently includes asserts, bounds checking, and item checking
-wizard:
- $(MAKE) $(OTHER) -f $(MAKEFILE) debug EXTRA_FLAGS='-g -DWIZARD -DDEBUG -DDEBUG_ITEM_SCAN'
-
-# DEBUG mode includes WIZARD mode as well as copious debugging input
-debug:
- $(MAKE) $(OTHER) -f $(MAKEFILE) DEBUG_CRAWL=y debug EXTRA_FLAGS='-g -DFULLDEBUG -DWIZARD'
-
-# DO NOT DELETE THIS LINE -- $(MAKE) depend depends on it.
-
-