diff options
author | jsorg71 <jsorg71> | 2006-08-05 04:32:40 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2006-08-05 04:32:40 +0000 |
commit | 66cbf378ed7f7ea7a5c58c9fe98c2beaa95f0715 (patch) | |
tree | c7c86c28f73d4e4852a91c3d2dc8605478969b92 /uirdesktop/makefile_fb | |
parent | bb04b348e8a1a8be57061c1e66048257a411476b (diff) | |
download | xrdp-proprietary-66cbf378ed7f7ea7a5c58c9fe98c2beaa95f0715.tar.gz xrdp-proprietary-66cbf378ed7f7ea7a5c58c9fe98c2beaa95f0715.zip |
add frame buffer files
Diffstat (limited to 'uirdesktop/makefile_fb')
-rw-r--r-- | uirdesktop/makefile_fb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/uirdesktop/makefile_fb b/uirdesktop/makefile_fb new file mode 100644 index 00000000..42d877c8 --- /dev/null +++ b/uirdesktop/makefile_fb @@ -0,0 +1,29 @@ + +# makefile +# fb + +CC = gcc + +OBJS = tcp.o iso.o mcs.o secure.o rdp.o rdp5.o orders.o \ +bitmap.o cache.o mppc.o pstcache.o channels.o licence.o \ +ssl_calls.o + +UIOBJS = uimain.o bsops.o fb.o + + +CFLAGS = -O2 -Wall +# -I$(INCDIR) +# -DWITH_DEBUG + +LDFLAGS = -L$(ROOTFS)/usr/local/lib -L$(ROOTFS)/usr/lib -L$(ROOTFS)/lib + +all: rd + +rd: $(OBJS) $(UIOBJS) + $(CC) -o fbrdesktop $(LDFLAGS) $(OBJS) $(UIOBJS) + +clean: + rm -f $(OBJS) $(UIOBJS) fbrdesktop librdesktop.so + +librdesktop.so: $(OBJS) $(UIOBJS) + $(CC) $(LDFLAGS) -shared -o librdesktop.so $(OBJS) $(UIOBJS) |