code: drawterm

Download patch

ref: 3f22e19560bfcac978bbbcdd20a55464755e10cf
parent: 93a43be0ea85aca12826c9d53aec0ad2a0278198
author: Russ Cox <rsc@swtch.com>
date: Fri Nov 4 11:05:28 EST 2005

where did this go?

--- /dev/null
+++ b/win32-386/Makefile
@@ -1,0 +1,25 @@
+ROOT=..
+include ../Make.config
+LIB=../libmachdep.a
+
+OFILES=\
+	getcallerpc.$O\
+	md5block.$O\
+	sha1block.$O\
+	tas.$O
+
+default: $(LIB)
+$(LIB): $(OFILES)
+	$(AR) r $(LIB) $(OFILES)
+	$(RANLIB) $(LIB)
+
+%.$O: %.c
+	$(CC) $(CFLAGS) $*.c
+
+%.$O: %.s
+	$(AS) -o $*.$O $*.s
+
+%.s: %.spp
+	cpp $*.spp >$*.s
+
+