]> granicus.if.org Git - nethack/commitdiff
*** empty log message ***
authorjwalz <jwalz>
Sat, 5 Jan 2002 21:05:58 +0000 (21:05 +0000)
committerjwalz <jwalz>
Sat, 5 Jan 2002 21:05:58 +0000 (21:05 +0000)
sys/share/Makefile.lib [new file with mode: 0644]

diff --git a/sys/share/Makefile.lib b/sys/share/Makefile.lib
new file mode 100644 (file)
index 0000000..1d62ef3
--- /dev/null
@@ -0,0 +1,21 @@
+#      SCCS Id: @(#)Makefile.lib       3.3     90/22/02
+#      Nethack makefile for Fred fish termlib -- Norman Meluch
+#
+CC     = cl /c
+MODEL  = L
+CFLAGS = /A$(MODEL) /Os /Oa /Gs /Zp1 /W0
+#
+# Termcap routines.
+TERMLIB = termlib.lib
+#
+TL_LOBJECTS =  tgetent.o       tgetflag.o      tgetnum.o       \
+               tgetstr.o       tgoto.o         tputs.o         \
+               isdigit.o       fgetlr.o
+#
+.SUFFIXES: .exe .o .c .obj .asm
+#
+.c.o:
+       $(CC) $(CFLAGS) /Fo$*.o $*.c
+#
+$(TERMLIB):    $(TL_LOBJECTS)
+       lib $(TERMLIB) -+ $(TL_LOBJECTS);