CFLAGS = -g


clean:
	rm -f *~ *.o *.out

distributor: distributor.o pathfinder.o translocate.o recoordinate.o \
		weemapmaker.o getdump.o
	cc $(CFLAGS) -o distributor distributor.c pathfinder.c translocate.c\
		recoordinate.c weemapmaker.c getdump.c

civmover: civmover.o needfinder.o recoordinate.o weemapmaker.o getdump.o \
		translocate.o mobcalc.o
	cc $(CFLAGS) -o civmover civmover.c recoordinate.c weemapmaker.c \
		getdump.c translocate.c needfinder.c mobcalc.c

accountant: accountant.o
	cc $(CFLAGS) -o accountant accountant.c


