diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-12-17 10:09:49 -0800 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-12-17 10:11:37 -0800 |
commit | 731cd5526e5c732d51307b26e784f454a724a699 (patch) | |
tree | 215249e4aa86a3d8418b7f5cad95551d49ecce2d /tests/modeprint/Makefile | |
parent | c86d431fe6174b1c2de531929213ea7dbd92326d (diff) |
libdrm: add mode setting files
Add mode setting files to libdrm, including xf86drmMode.* and the new
drm_mode.h header. Also add a couple of tests to sanity check the
kernel interfaces and update code to support them.
Diffstat (limited to 'tests/modeprint/Makefile')
-rw-r--r-- | tests/modeprint/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/modeprint/Makefile b/tests/modeprint/Makefile new file mode 100644 index 00000000..70788dc9 --- /dev/null +++ b/tests/modeprint/Makefile @@ -0,0 +1,14 @@ + +all: app + +#CFLAGS = -g -ansi -pedantic -DPOSIX_C_SOURCE=199309L \ +# -D_POSIX_SOURCE -D_XOPEN_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE \ + +app: modeprint.c + @gcc $(CFLAGS) -o app -Wall -I../../libdrm -I../../shared-core -L../../libdrm/.libs -ldrm modeprint.c + +clean: + @rm -f app + +run: app + @sudo ./test |