diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-07-12 16:56:15 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-07-12 16:56:15 -0700 |
commit | 4b58f943a99a5f885dba36d095d954b4bedc2499 (patch) | |
tree | daf37438affff095eb951abb8fe7d06c47a301ec /xorg/server/xrdpdev/Makefile | |
parent | 318ed3acb1eed0ddb3aadc75895f371124ffc5fa (diff) | |
download | xrdp-proprietary-4b58f943a99a5f885dba36d095d954b4bedc2499.tar.gz xrdp-proprietary-4b58f943a99a5f885dba36d095d954b4bedc2499.zip |
xorg driver skeleton
Diffstat (limited to 'xorg/server/xrdpdev/Makefile')
-rw-r--r-- | xorg/server/xrdpdev/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/xorg/server/xrdpdev/Makefile b/xorg/server/xrdpdev/Makefile new file mode 100644 index 00000000..920e7a55 --- /dev/null +++ b/xorg/server/xrdpdev/Makefile @@ -0,0 +1,17 @@ + +OBJS = xrdpdev.o + +CFLAGS = -O2 -Wall -I/usr/include/xorg -I/usr/include/pixman-1 + +LDFLAGS = + +LIBS = + +all: xrdpdev_drv.so + +xrdpdev_drv.so: $(OBJS) Makefile + $(CC) -shared -o xrdpdev_drv.so $(LDFLAGS) $(OBJS) $(LIBS) + +clean: + rm -f $(OBJS) xrdpdev_drv.so + |