summaryrefslogtreecommitdiffstats
path: root/xorg/server/module/Makefile
blob: 39bfbbed5438b1a904a881c2db9a0f014f1d43ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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