You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
798 B
29 lines
798 B
|
|
# makefile
|
|
# directfb
|
|
|
|
CC = mipsel-linux-gnu-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 dfb.o
|
|
|
|
#CFLAGS = -O2 -mips3 -Wall -I../../../staging/usr/local/include/directfb
|
|
#CFLAGS = -O3 -Wall -I../../../staging/usr/local/include/directfb
|
|
CFLAGS = -O2 -Wall -I../../../staging/usr/local/include/directfb
|
|
# -DWITH_DEBUG
|
|
|
|
LDFLAGS = -L../../usr/local/lib -L../../usr/lib -L../../lib
|
|
|
|
all: rd
|
|
|
|
rd: $(OBJS) $(UIOBJS)
|
|
$(CC) -o dfbrdesktop $(LDFLAGS) $(OBJS) $(UIOBJS) -ldirectfb -lfusion -ldirect -lz
|
|
|
|
clean:
|
|
rm -f $(OBJS) $(UIOBJS) dfbrdesktop librdesktop.so
|
|
|
|
librdesktop.so: $(OBJS) $(UIOBJS)
|
|
$(CC) $(LDFLAGS) -shared -o librdesktop.so $(OBJS) $(UIOBJS) -ldirectfb -lfusion -ldirect -lz
|