cmcs/
cmcs/CVS/
cmcs/Documentation/
cmcs/Documentation/CVS/
cmcs/Historical/CVS/
cmcs/Historical/OldDocumentation/
cmcs/Historical/OldDocumentation/CVS/
cmcs/Historical/OldSource/
cmcs/Historical/OldSource/CVS/
cmcs/makefiles/CVS/
cmcs/src/CVS/
cmcs/tree/CVS/
cmcs/tree/bin/CVS/
cmcs/tree/datafiles/
cmcs/tree/datafiles/CVS/
cmcs/tree/fonts/CVS/
cmcs/tree/helpfiles/CVS/
cmcs/tree/text/
cmcs/tree/text/CVS/
cmcs/tree/userfiles/
cmcs/tree/userfiles/CVS/
cmcs/tree/www/
cmcs/tree/www/CVS/
COMPILE = gcc 
LINK    = gcc
LIBS    = -lcrypt

all:	cryptmcs userinfo cmcsview

cryptmcs:	src/cryptmcs.c src/cryptmcs.h
	$(COMPILE) -o tree/bin/cryptmcs src/cryptmcs.c $(LIBS)

userinfo:	src/userinfo.c src/cryptmcs.h
	$(COMPILE) -o tree/bin/userinfo src/userinfo.c

cmcsview:	src/cmcsview.c
	$(COMPILE) -o tree/bin/cmcsview src/cmcsview.c

clean:	
	rm tree/bin/*