Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Makefile.helpers
blob: 69eb57e5352ac8e563d1f8a3297de9444c8dbb65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: helpers clean-helpers

HELPERS = $(COMMANDS)/helpers

HELPERS_LIBS = $(shell pkg-config --libs xrandr x11)

$(HELPERS)/%: $(HELPERS)/%.c
	gcc -o $@ $< $(HELPERS_LIBS)

bin_HELPERS = $(HELPERS)/list-outputs \
              $(HELPERS)/find-free-display \
              $(HELPERS)/xephyr-window

helpers: $(bin_HELPERS)

clean-helpers:
	rm -f $(bin_HELPERS)