summaryrefslogtreecommitdiffstats
path: root/private/tapi/dev/apps/tb/nt.mak
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--private/tapi/dev/apps/tb/nt.mak27
1 files changed, 27 insertions, 0 deletions
diff --git a/private/tapi/dev/apps/tb/nt.mak b/private/tapi/dev/apps/tb/nt.mak
new file mode 100644
index 000000000..a93df1f2d
--- /dev/null
+++ b/private/tapi/dev/apps/tb/nt.mak
@@ -0,0 +1,27 @@
+!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)