summaryrefslogtreecommitdiffstats
path: root/xorg/server/xrdpkeyb/Makefile
blob: 8c81fceed5f649c7d121fae85efb4ecaf2d9dec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

OBJS = rdpKeyboard.o

CFLAGS = -g -O2 -Wall -fPIC -I/usr/include/xorg -I/usr/include/pixman-1 \
-I../module -I../../../common

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