TARGET=libsecure.a
OBJS= $(patsubst %.c,%.o,$(wildcard *.c))
CFLAGS = -I../include -I../kernel/include

all: $(TARGET)

$(TARGET):  $(OBJS)
	$(AR) rcs $@ $^
	ranlib $@

%.o:  %.c
	$(CC) -o $@ -c $(CFLAGS) $<

clean : 
	rm -f *.o $(TARGET)

