diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2012-02-12 22:40:56 -0800 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2012-02-12 22:40:56 -0800 |
commit | 968a293e193a41a3230a99c09008273e3d9fcc56 (patch) | |
tree | 3dffcf241faaeec5bfa5f3e1b674fdbda50df168 | |
parent | 35a22ac3079f046d4443a1e56f7e9729f0aa5590 (diff) | |
download | xrdp-proprietary-968a293e193a41a3230a99c09008273e3d9fcc56.tar.gz xrdp-proprietary-968a293e193a41a3230a99c09008273e3d9fcc56.zip |
xorg/tests: added xdemo Makefile
-rw-r--r-- | xorg/tests/xdemo/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/xorg/tests/xdemo/Makefile b/xorg/tests/xdemo/Makefile new file mode 100644 index 00000000..a4c75110 --- /dev/null +++ b/xorg/tests/xdemo/Makefile @@ -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 + |