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 + +