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


1.1
date	97.06.11.02.09.54;	author morgan;	state Exp;
branches;
next	;


desc
@Auth widget code
@


1.1
log
@Initial revision
@
text
@OPT = -g #-O6
CFLAGS = $(OPT) -I/usr/X11R6/include -Wall -pedantic
LFLAGS = -L/usr/X11R6/lib -lXt -lX11 -lXmu #-lefence

OBJS = Auth.o test.o

TARGETS = $(OBJS) test

Auth.o: Auth.c Auth.h AuthP.h

test.o: test.c

test: test.o Auth.o
	$(CC) $(CFLAGS) $(OBJS) -o $@@ $(LFLAGS)

clean:
	rm -f $(TARGETS) *~
@
