diff options
| author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-13 14:23:51 -0600 | 
|---|---|---|
| committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-13 14:46:09 -0600 | 
| commit | 7570dc0a41c4b2a1952f7275327d7168e45129fa (patch) | |
| tree | d3b3aeb72b7b6b9964bb988d46b98c663b65ec9b /Makefile | |
| parent | e5a57fb155c0238c46336795902c6bfdf4c6d00b (diff) | |
minor adjustments in Makefile
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 6 | 
1 files changed, 3 insertions, 3 deletions
@@ -15,8 +15,8 @@ LDLIBS    = `$(PKG_CONFIG) --libs $(PKGS)` $(LIBS)  all: dwl  dwl: dwl.o util.o -	$(CC) dwl.o util.o $(LDLIBS) $(LDFLAGS) $(DWLCFLAGS) -o $@ -dwl.o: dwl.c config.mk config.h client.h cursor-shape-v1-protocol.h pointer-constraints-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h xdg-shell-protocol.h +	$(CC) dwl.o util.o $(DWLCFLAGS) $(LDFLAGS) $(LDLIBS) -o $@ +dwl.o: dwl.c client.h config.h config.mk cursor-shape-v1-protocol.h pointer-constraints-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h xdg-shell-protocol.h  util.o: util.c util.h  # wayland-scanner is a tool which generates C headers and rigging for Wayland @@ -66,4 +66,4 @@ uninstall:  .SUFFIXES: .c .o  .c.o: -	$(CC) $(CPPFLAGS) $(DWLCFLAGS) -c $< +	$(CC) $(CPPFLAGS) $(DWLCFLAGS) -o $@ -c $<  | 
