where did this go?

This commit is contained in:
Russ Cox 2005-11-04 16:05:28 +00:00
parent 93a43be0ea
commit 3f22e19560
1 changed files with 25 additions and 0 deletions

25
win32-386/Makefile Normal file
View File

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