diff options
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) |