/
bin/95/
docs/DM/
docs/creatures/
docs/objects/
docs/rooms/
docs/utils/
help/
log/
objmon/ddesc/
player/
post/
rooms/
util/
util/fing/
util/italk/
util/lev-reset/
util/lib/
util/list/
util/msg/
util/tdel/
util/vote/
util/wtfix/
#This is the MERC v2.2 makefile.  You will notice that I have added CHATOS 
#lines to this make file.  You will need to do something similar with your
#makefile. 


CC      = gcc
PROF    = -g
NOCRYPT =
C_FLAGS = -O -Wall $(PROF) $(NOCRYPT)
L_FLAGS = -O $(PROF)

O_FILES = act_comm.o act_info.o act_move.o act_obj.o act_wiz.o comm.o const.o \
          db.o fight.o handler.o interp.o magic.o mob_commands.o mob_prog.o   \
	  save.o special.o update.o 
CHATOS = chat/akey.o chat/allkeys.o chat/chatmain.o chat/eliza.o

merc: $(O_FILES)
	rm -f merc
	$(CC) $(L_FLAGS) -o merc $(O_FILES) $(CHATOS) -ldl

.c.o: merc.h
	$(CC) -c $(C_FLAGS) $<