From 3f22e19560bfcac978bbbcdd20a55464755e10cf Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 4 Nov 2005 16:05:28 +0000 Subject: [PATCH] where did this go? --- win32-386/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 win32-386/Makefile diff --git a/win32-386/Makefile b/win32-386/Makefile new file mode 100644 index 0000000..30328f4 --- /dev/null +++ b/win32-386/Makefile @@ -0,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 + +