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.
|
|
|
# makefile
|
|
|
|
|
|
|
|
OBJS = tcp.obj iso.obj mcs.obj secure.obj rdp.obj rdp5.obj orders.obj \
|
|
|
|
bitmap.obj cache.obj mppc.obj pstcache.obj channels.obj licence.obj \
|
|
|
|
ssl_calls.obj
|
|
|
|
|
|
|
|
UIOBJS = uimain.obj bsops.obj win32.obj
|
|
|
|
|
|
|
|
#-w-aus -w-rch
|
|
|
|
CFLAGS = -O2 -w-par -I.. -Ic:\borland\bcc55\include
|
|
|
|
LDFLAGS = -W -Lc:\borland\bcc55\lib
|
|
|
|
|
|
|
|
all: rd
|
|
|
|
|
|
|
|
rd: $(OBJS) $(UIOBJS)
|
|
|
|
$(CC) -ewinrdesktop.exe $(LDFLAGS) $(OBJS) $(UIOBJS)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
del /q $(OBJS) $(UIOBJS) winrdesktop.exe *.tds
|