head	1.1;
access;
symbols;
locks
	emily:1.1; strict;
comment	@# @;


1.1
date	96.02.16.06.59.07;	author emily;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@CC     = g++
INC    = ../include
CFLAGS = -g -Wall
OBJS   = generic_zone.o native_zone.o 

#########################################################################

target : $(OBJS)

generic_zone.o : generic_zone.h ../item/item.h ../location/location.h \
                 ../character/mobile.h generic_zone.cc
	$(CC) -I$(INC) $(CFLAGS) -c generic_zone.cc

native_zone.o : native_zone.h ../item/item.h ../location/location.h \
                ../character/mobile.h ../include/utility.h \
                ../include/mud_types.h native_zone.cc
	$(CC) -I$(INC) $(CFLAGS) -c native_zone.cc

clean:
	rm *.o
@
