summaryrefslogtreecommitdiffstats
path: root/xorg/server/module/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'xorg/server/module/Makefile')
-rw-r--r--xorg/server/module/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/xorg/server/module/Makefile b/xorg/server/module/Makefile
new file mode 100644
index 00000000..39bfbbed
--- /dev/null
+++ b/xorg/server/module/Makefile
@@ -0,0 +1,16 @@
+
+OBJS = rdpMain.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 libxorgxrdp.so $(LDFLAGS) $(OBJS) $(LIBS)
+
+clean:
+ rm -f $(OBJS) libxorgxrdp.so