summaryrefslogtreecommitdiff
path: root/systems/msdos/tx/src/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'systems/msdos/tx/src/makefile')
-rw-r--r--systems/msdos/tx/src/makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/systems/msdos/tx/src/makefile b/systems/msdos/tx/src/makefile
new file mode 100644
index 0000000000..e87f3698c9
--- /dev/null
+++ b/systems/msdos/tx/src/makefile
@@ -0,0 +1,36 @@
+# Makefile for Borland C++ version 2.0
+# Should work with any Borland C or Turbo C.
+# Check the include and library paths below.
+# Ignore warnings about possibly incorrect assignments
+CC = bcc
+LINK = tlink
+STRIP = tdstrip
+RM = del
+
+.c.obj:
+ $(CC) -ms -O -Z -Ic:\bc\include -c $<
+
+OBJ_FILES = \
+ frame.obj \
+ tx.obj \
+ txcomm.obj \
+ txdir.obj \
+ txexpand.obj \
+ txmain.obj \
+ txmenu.obj \
+ txprompt.obj
+
+all: tx.exe
+
+tx.exe: $(OBJ_FILES)
+ $(LINK) /x/c/Lc:\bc\lib @tx.rsp
+
+strip: tx.exe
+ -$(STRIP) tx.exe
+
+clean:
+ -$(RM) *.obj
+
+veryclean:
+ -$(RM) *.obj
+ -$(RM) tx.exe