NAME	=AuthGui

OBJS	=

default: createdir $(NAME) 

include ../Makefile

clean:
	rm -f ../$(OBJDIR)/$(NAME)/*.o; \ 
	rm -f ../$(OBJDIR)/$(NAME)/$(NAME).a

createdir:
	[ -d ../$(OBJDIR)/$(NAME) ] || mkdir ../$(OBJDIR)/$(NAME)

$(NAME): $(OBJS)
	ar cr ../$(OBJDIR)/$(NAME)/$(NAME).a $(OBJS)

#../$(OBJDIR)/$(NAME)/GuglerLib_Cipher_RC6.o:
#	$(CC) -o ../$(OBJDIR)/$(NAME)/GuglerLib_Cipher_RC6.o -c ../$(SRC)/$(NAME)/GuglerLib_Cipher_RC6.c $(CFLAGS) -I../$(INC)

