CC=gcc
CFLAGS=-Wall -ggdb -O1

all: test

test: test.o krb5crypto.o -lkrb5

krb5crypto.o: -lkrb5
	$(CC) $(CFLAGS) -c krb5crypto.c
		
test.o: krb5crypto.h
	$(CC) $(CFLAGS) -c test.c
	
clean:
	rm -f *.o test
