# Use this makefile when you need to make the server again quickly
# (e.g. when you're debugging).  This makefile gets used when you
# type "compile quick".
#
# These variables are configurable.
#---------------------------------------#
DIRS := lib server
#---------------------------------------#

.PHONY: all

include make/UtilMakefile

# Productions:
#	all: Make everything

all: dirs

installall:
	$(MAKE) COMMAND=install recursive

install:

ifdef ARCH
eviscerate:
	find . -name $(ARCH) -a -type d -exec rm -rf \{\} \;

archall:
	$(MAKE) COMMAND=arch recursive
endif
