Skip to content

Commit

Permalink
chore: remove unused variable in Makefile (api7#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanxi authored Nov 4, 2022
1 parent 414e8bc commit 5364cbf
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 @@ -37,13 +37,13 @@ test: compile
### clean: Remove generated files
.PHONY: clean
clean:
rm -f $(C_SO_NAME) $(OBJS) ${R3_CONGIGURE}
rm -f $(C_SO_NAME) $(OBJS)


### compile: Compile library
.PHONY: compile

compile: ${R3_FOLDER} ${R3_CONGIGURE} ${R3_STATIC_LIB} $(C_SO_NAME)
compile: $(C_SO_NAME)

${OBJS} : %.o : %.c
$(CC) $(MY_CFLAGS) -c $< -o $@
Expand Down

0 comments on commit 5364cbf

Please sign in to comment.