添加 Makefile 文件

This commit is contained in:
aixiao 2022-09-22 15:43:38 +08:00
parent c3031b8da6
commit 445fe4e818
2 changed files with 22 additions and 0 deletions

BIN
BaiduAIFaceDetection.o Normal file

Binary file not shown.

22
Makefile Normal file
View File

@ -0,0 +1,22 @@
CROSS_COMPILE ?=
CC := $(CROSS_COMPILE)gcc
STRIP := $(CROSS_COMPILE)strip
CFLAGS += -g -Wall -Os
LDFLAGS += -lcurl -lcjson
OBJ := BaiduAIFaceDetection
all: BaiduAIFaceDetection.o
$(CC) $(CFLAGS) -o $(OBJ) $^ $(LDFLAGS)
.c.o:
$(CC) $(CFLAGS) -c $<
install:
cp $(OBJ) /bin/
uninstall:
rm /bin/$(OBJ)
clean:
rm -rf *.o
rm $(OBJ)