xref: /plan9/sys/src/cmd/unix/drawterm/posix-arm/Makefile (revision 58da3067adcdccaaa043d0bfde28ba83b7ced07d)
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) -o $*.$O $*.s
21
22%.s: %.spp
23	cpp $*.spp >$*.s
24
25
26