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

XRANDR_LIBS = $(shell pkg-config --libs xrandr x11)
X11_LIBS = $(shell pkg-config --libs x11)

$(HELPERS)/list-outputs: $(HELPERS)/list-outputs.c
	gcc -o $(HELPERS)/list-outputs \
            $(HELPERS)/list-outputs.c $(XRANDR_LIBS)

$(HELPERS)/find-free-display: $(HELPERS)/find-free-display.c
	gcc -o $(HELPERS)/find-free-display \
            $(HELPERS)/find-free-display.c $(X11_LIBS)

helpers: $(HELPERS)/list-outputs $(HELPERS)/find-free-display

clean-helpers:
	rm -f $(HELPERS)/list-outputs $(HELPERS)/find-free-display