Skip to content

Commit

Permalink
[fix]: Makefile dependency for target "shared"
Browse files Browse the repository at this point in the history
  • Loading branch information
chemwolf6922 committed Jul 7, 2023
1 parent cb8693b commit d0df8ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ $(UTILS_STATIC): $(UTILS_OBJ)
$(CJSON_SHARED_VERSION): $(CJSON_OBJ)
$(CC) -shared -o $@ $< $(CJSON_SO_LDFLAG) $(LDFLAGS)
#cJSON_Utils
$(UTILS_SHARED_VERSION): $(UTILS_OBJ)
$(CC) -shared -o $@ $< $(CJSON_OBJ) $(UTILS_SO_LDFLAG) $(LDFLAGS)
$(UTILS_SHARED_VERSION): $(UTILS_OBJ) $(CJSON_OBJ)
$(CC) -shared -o $@ $< $(UTILS_SO_LDFLAG) $(LDFLAGS)

#objects
#cJSON
Expand Down

0 comments on commit d0df8ca

Please sign in to comment.