Skip to content

Commit

Permalink
feat(Simcom-A7670C):
Browse files Browse the repository at this point in the history
Add platone to Simcom-A7670C #1377
BoATE-872
  • Loading branch information
zt222 committed Feb 21, 2023
1 parent f0d48e6 commit ae6ad72
Show file tree
Hide file tree
Showing 6 changed files with 1,856 additions and 0 deletions.
18 changes: 18 additions & 0 deletions vendor/platform/Simcom-A7670C/src/rpc/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Source and Objects

SOURCES = $(wildcard *.c)
OBJECTS_DIR = $(BOAT_BUILD_DIR)/vendor/platform/$(PLATFORM_TARGET)/rpc
OBJECTS = $(patsubst %.c,$(OBJECTS_DIR)/%.o,$(SOURCES))


all: $(OBJECTS_DIR) $(OBJECTS)

$(OBJECTS_DIR):
$(BOAT_MKDIR) -p $(OBJECTS_DIR)

$(OBJECTS_DIR)/%.o:%.c
$(CC) -c $(BOAT_CFLAGS) $< -o $@


clean:
-$(BOAT_RM) $(OBJECTS)
Loading

0 comments on commit ae6ad72

Please sign in to comment.