diff options
| author | podit <podit@podit.dev> | 2023-02-14 00:16:13 +0000 |
|---|---|---|
| committer | podit <podit@podit.dev> | 2023-02-14 00:20:33 +0000 |
| commit | b333822f244fde91226eb505e70869779e11dd15 (patch) | |
| tree | db150275a30d3eee244a203937eac2639c4c6e2f /Makefile | |
| parent | 1ab43e173a353c81f068aa5b4d985dd44577fa60 (diff) | |
| download | dwlb-b333822f244fde91226eb505e70869779e11dd15.tar.gz | |
moved all configurable defaults to separate header
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -5,6 +5,9 @@ CFLAGS += -Wall -Wextra -Wno-unused-parameter -Wno-format-truncation -g all: $(BINS) +config.h: + cp config.def.h $@ + clean: $(RM) $(BINS) $(addsuffix .o,$(BINS)) @@ -44,7 +47,7 @@ wlr-layer-shell-unstable-v1-protocol.c: wlr-layer-shell-unstable-v1-protocol.o: wlr-layer-shell-unstable-v1-protocol.h -dwlb.o: utf8.h xdg-shell-protocol.h xdg-output-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h +dwlb.o: utf8.h config.h xdg-shell-protocol.h xdg-output-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h # Protocol dependencies dwlb: xdg-shell-protocol.o xdg-output-unstable-v1-protocol.o wlr-layer-shell-unstable-v1-protocol.o |