Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Makefile.helpers
blob: 65b5138c5d484036934f29ca24f79fe7d279809b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)