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

OBJS = xrdpdev.o

CFLAGS = -O2 -Wall -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