LIB=libTest.a

OBJS=$(LIB)(Fifteen_Chars.o) $(LIB)(Test.o)

LIB:: $(OBJS)

.c.a:
	$(CC) -c $(CFLAGS) $*.c
	ar cru $(LIB) $*.o
	rm $*.o

all: $(LIB)
