Skip to content

Commit

Permalink
Improved all rule of the makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mhahnFr committed Jul 18, 2024
1 parent 9368a74 commit 77ff688
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ INSTALL_PATH ?= /usr/local

default: $(NAME)

all: $(SHARED_N) $(STATIC_N) $(DYLIB_N)
all:
$(MAKE) $(SHARED_N)
$(MAKE) $(STATIC_N)
- $(MAKE) $(DYLIB_N)

install: $(NAME)
mkdir -p $(INSTALL_PATH)/lib
Expand Down

0 comments on commit 77ff688

Please sign in to comment.