all repos — acme @ 27aa20a319d9b390ae5bc6ac230d84b509866dfc

fork of the acme editor from plan9port - keybinds, tweaks, config.h, etc

libframe/mkfile (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<$PLAN9/src/mkhdr

LIB=libframe.a

OFILES=\
	frbox.$O\
	frdelete.$O\
	frdraw.$O\
	frinit.$O\
	frinsert.$O\
	frptofchar.$O\
	frselect.$O\
	frstr.$O\
	frutil.$O\

HFILES=\
	$PLAN9/include/frame.h\
	$PLAN9/include/draw.h\

default:V:	./$LIB

# ./$LIB:	$OFILES
# 	$AR rsc ./$LIB $newprereq

./$LIB(%):N: %
./$LIB:	${OFILES:%=./$LIB(%)}
	$AR rsc ./$LIB $newmember

&:n:	&.$O
	$AR rsc ./$LIB $stem.$O

all install:V: ./$LIB

NUKEFILES=$NUKEFILES ./$LIB

<$PLAN9/src/mkcommon