summaryrefslogtreecommitdiffstats
path: root/xorg/tests/xdemo/Makefile
blob: a4c75110e7c6204923dbc0f52d074c05d0ee1774 (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