xorg/tests: added xdemo Makefile

This commit is contained in:
Jay Sorg 2012-02-12 22:40:56 -08:00
parent 35a22ac307
commit 968a293e19

11
xorg/tests/xdemo/Makefile Normal file
View File

@ -0,0 +1,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