cordova-plugin-facedetection-lite
Version:
A face detection offline with a few lines of code. Was designed to run on old smartphones.
20 lines (13 loc) • 298 B
Plain Text
SRC=$(wildcard $(SRC_PATH)/*.c)
OBJS=$(patsubst %.c,%.o,$(SRC))
LDLIBS=$(patsubst %, $(TARGET_PATH)/lib%.a, $(DEPS))
all:$(ARCH)-$(LIBNAME).a
$(ARCH)-$(LIBNAME).a: $(OBJS)
@echo $(LDLIBS) $(OBJS)
$(AR) rcs $@ $(OBJS)
ranlib $@
clean:
rm $(OBJS)
realclean: clean
rm *.a