Skip to content

Commit

Permalink
Add MIS2008
Browse files Browse the repository at this point in the history
  • Loading branch information
dimerr committed Jan 26, 2025
1 parent 1bd9fd9 commit 8a5aac1
Show file tree
Hide file tree
Showing 4 changed files with 2,616 additions and 0 deletions.
17 changes: 17 additions & 0 deletions libraries/sensor/hi3516ev200/imagedesign_mis2008/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
LIB_NAME := libsns_mis2008

override CFLAGS += -DSDK_CODE=$(SDK_CODE) -fPIC -I$(CURDIR)/../../../../include

SRCS := $(wildcard *.c)
OBJS := $(SRCS:%.c=%.o) $(ASM_SRCS:%.S=%.o)

all: $(LIB_NAME).so $(LIB_NAME).a

$(LIB_NAME).so: $(OBJS)
$(CC) -shared -o $@ $(OBJS)

$(LIB_NAME).a: $(OBJS)
$(AR) -rcs $(LIB_NAME).a $(OBJS)

clean:
-rm $(OBJS) $(LIB_NAME).so
Loading

0 comments on commit 8a5aac1

Please sign in to comment.