xref: /plan9/sys/src/cmd/unix/drawterm/posix-mips/Makefile (revision ec59a3ddbfceee0efe34584c2c9981a5e5ff1ec4)
1ROOT=..
2include ../Make.config
3LIB=../libmachdep.a
4
5OFILES=\
6	getcallerpc.$O\
7	md5block.$O\
8	sha1block.$O\
9	tas.$O
10
11default: $(LIB)
12$(LIB): $(OFILES)
13	$(AR) r $(LIB) $(OFILES)
14	$(RANLIB) $(LIB)
15
16%.$O: %.c
17	$(CC) $(CFLAGS) $*.c
18
19%.$O: %.s
20	$(AS) $(ASFLAGS) -o $*.$O $*.s
21
22%.s: %.spp
23	cpp $*.spp >$*.s
24
25
26