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


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


desc
@@


1.1
log
@Initial revision
@
text
@CC     = g++
INC    = ../include
CFLAGS = -g -Wall
OBJS   = generic_location.o location.o location_manager.o world.o matrix.o

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

target : $(OBJS)

generic_location.o : generic_location.h ../item/item.h \
                 ../include/utility.h generic_location.cc
	$(CC) -I$(INC) $(CFLAGS) -c generic_location.cc

location.o : location.h location.cc
	$(CC) -I$(INC) $(CFLAGS) -c location.cc

location_manager.o : location_manager.h location.h location_manager.cc
	$(CC) -I$(INC) $(CFLAGS) -c location_manager.cc

world.o : world.h world.cc
	$(CC) -I$(INC) $(CFLAGS) -c world.cc

matrix.o : matrix.h matrix.cc
	$(CC) -I$(INC) $(CFLAGS) -c matrix.cc

clean:
	rm *.o
@
