Skip to content

Commit

Permalink
use $(MAKE) not make in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
majestrate committed Jun 9, 2020
1 parent f06a210 commit 18864b6
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 @@ -50,11 +50,11 @@ wterm: $(OBJECTS)
$(CC) -o wterm $(OBJECTS) $(LDFLAGS)

wld:
make -C src/wld
$(MAKE) -C src/wld

clean:
rm -f $(OBJECTS) $(HDRS) $(WAYLAND_SRC) include/config.h wterm
make -C src/wld clean
$(MAKE) -C src/wld clean

install-icons:
mkdir -p $(SHARE_PREFIX)/share/icons/hicolor/scalable/apps/
Expand Down

0 comments on commit 18864b6

Please sign in to comment.