summaryrefslogtreecommitdiffstats
path: root/xorg/tests/xdemo/Makefile
blob: 6c98d1cea69a620e1f61a0290a36d51a3cf038d2 (plain)
1
2
3
4
5
6
7
8
9
10
11

CFLAGS = -Werror -Wall

all: xdemo

xdemo: xdemo.c bmp_parser.c
	gcc $(CFLAGS) xdemo.c bmp_parser.c -o xdemo -lX11

.PHONY clean:
	rm -f *.o xdemo