You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
284 B
17 lines
284 B
12 years ago
|
|
||
|
OBJS = rdpMouse.o
|
||
|
|
||
|
CFLAGS = -g -O2 -Wall -fPIC -I/usr/include/xorg -I/usr/include/pixman-1 -I../module
|
||
|
|
||
|
LDFLAGS =
|
||
|
|
||
|
LIBS =
|
||
|
|
||
|
all: xrdpmouse_drv.so
|
||
|
|
||
|
xrdpmouse_drv.so: $(OBJS) Makefile
|
||
|
$(CC) -shared -o xrdpmouse_drv.so $(LDFLAGS) $(OBJS) $(LIBS)
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS) xrdpmouse_drv.so
|