xrdp/xorg/tests/randr/Makefile
2013-02-17 19:03:43 -08:00

12 lines
150 B
Makefile

CFLAGS = -O2 -Wall
all: test-randr
test-randr: trandr.c
gcc $(CFLAGS) trandr.c -o test-randr -lX11 -lXrandr
.PHONY clean:
rm -f *.o test-randr