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

OBJS = xrdpdev.o

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

LDFLAGS =

LIBS =

all: xrdpdev_drv.so

xrdpdev_drv.so: $(OBJS) Makefile
	$(CC) -shared -o xrdpdev_drv.so $(LDFLAGS) $(OBJS) $(LIBS)

clean:
	rm -f $(OBJS) xrdpdev_drv.so