################################################################################
# Copyright 2000-2001 Richard Woolcock.  All rights reserved.  This software may
# only be used, copied, modified, distributed or sub-licensed under the terms of
# the Glad license, which must always be included with any distributions of this
# software.  This copyright notice must remain unmodified at the top of any file 
# containing any of the code found within this file.
################################################################################

# Specify whether or not you want to use gdb.
CC      = gcc -Wall -O
#CC     = gcc -Wall -O -ggdb

# List the object files.
O_FILES = glad.o sockets.o commands.o string.o text_io.o file_io.o \
	  combat.o combat_hands.o combat_legs.o combat_eyes.o \
	  soundex.o justify.o help.o

glad:	$(O_FILES)
	rm -f ../bin/glad
	$(CC) -o ../bin/glad $(O_FILES)