diff options
author | Jakob Bornecrantz <jakob@tungstengraphics.com> | 2008-01-28 03:12:29 +0100 |
---|---|---|
committer | Jakob Bornecrantz <jakob@tungstengraphics.com> | 2008-01-28 03:14:56 +0100 |
commit | a2254c5a9670a3e865f0eb5acd46e905c9b146ce (patch) | |
tree | 080e144b12585dc3dd4c7e3cae63bb3dbe004486 /tests/modefb/Makefile | |
parent | 98361cf28c62530e34758b27aa1eea805269e0e5 (diff) |
Added cursor support
Diffstat (limited to 'tests/modefb/Makefile')
-rw-r--r-- | tests/modefb/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/modefb/Makefile b/tests/modefb/Makefile new file mode 100644 index 00000000..84c6c86a --- /dev/null +++ b/tests/modefb/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: demo.c + @gcc $(CFLAGS) -o app -Wall demo.c + +clean: + @rm -f app + +run: app + sudo ./test |