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