12 lines
140 B
Makefile
12 lines
140 B
Makefile
|
|
||
|
CFLAGS = -Werror -Wall
|
||
|
|
||
|
all: test-randr
|
||
|
|
||
|
xdemo: trandr.c
|
||
|
gcc $(CFLAGS) trandr.c -o test-randr -lX11
|
||
|
|
||
|
.PHONY clean:
|
||
|
rm -f *.o test-randr
|
||
|
|