diff options
Diffstat (limited to 'xorg/server/xrdpkeyb/Makefile')
-rw-r--r-- | xorg/server/xrdpkeyb/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/xorg/server/xrdpkeyb/Makefile b/xorg/server/xrdpkeyb/Makefile new file mode 100644 index 00000000..c8654851 --- /dev/null +++ b/xorg/server/xrdpkeyb/Makefile @@ -0,0 +1,16 @@ + +OBJS = rdpKeyboard.o + +CFLAGS = -g -O2 -Wall -fPIC -I/usr/include/xorg -I/usr/include/pixman-1 -I../module + +LDFLAGS = + +LIBS = + +all: xrdpkeyb_drv.so + +xrdpkeyb_drv.so: $(OBJS) Makefile + $(CC) -shared -o xrdpkeyb_drv.so $(LDFLAGS) $(OBJS) $(LIBS) + +clean: + rm -f $(OBJS) xrdpkeyb_drv.so |