Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

27 lines
500 B

!include <ntwin32.mak>
!ifndef MYDEBUG
MYDEBUG = 0
!endif
!if $(MYDEBUG)
L_FLAGS = $(linkdebug)
!else
L_FLAGS =
!endif
APPLIBS=\telephon\tapi\lib\tapi32.lib
OBJS=ui.obj vars.obj tb.obj widget.obj
all: tb.exe
.c.obj:
$(cc) -DTAPI_1_1 $(cdebug) $(cflags) $(cvars) $*.c
tb.rbj: tb.rc
$(rc) -DTAPI_1_1 $(rcvars) -r -fo tb.res tb.rc
cvtres -$(CPU) tb.res -o tb.rbj
tb.exe: $(OBJS) tb.rbj tb.def
$(link) $(L_FLAGS) $(guiflags) -out:tb14.exe $(OBJS) tb.rbj $(APPLIBS) $(guilibsdll)