/
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/
CFLAGS = -g -DCOMPRESS
LIBS = -lm 
CC = cc

OBJECTS = gstat.o utils.o compress.o

OBJECTS2 = stat.o utils.o compress.o

gstat: $(OBJECTS)
	$(CC) $(CFLAGS) $(OBJECTS) -o playerstats $(LIBS)
	chmod o-rwx playerstats
stat:  $(OBJECTS2)
	$(CC) $(CFLAGS) $(OBJECTS2) -o roomstats $(LIBS)
	chmod o-rwx roomstats

clean: 
	rm $(OBJECTS)