Artifact ecd4c2b0c6141b0dec5c851d0a9c0d4766e65e6c055509600c75787d8096a8ea:

  • File src/tabby/Makefile — part of check-in [c59c3cbc45] at 2023-02-19 01:42:49 on branch trunk — full rewrite for wlroots 0.16 (user: jmcclure size: 510)


EXE        = tabby
PROTOCOLS  = tabby-ipc-protocol
MODULES    = config cursor input layer output seat tabby workspace xdg
DEPS       = libinput wayland-server wlroots xkbcommon
PKGCONF   ?= pkgconf
CFLAGS    += $(shell $(PKGCONF) --cflags  $(DEPS))
CFLAGS    += -I../protocols/
CFLAGS    += -DWLR_USE_UNSTABLE
LDLIBS    += $(shell $(PKGCONF) --libs    $(DEPS))
VPATH      = ../protocols/

$(EXE): $(MODULES:%=%.o) $(PROTOCOLS:%=%.o)

clean:
	rm -f *.o

distclean: clean
	rm -f tabby

.PHONY: clean distclean