aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/samterm/Makefile
blob: 73256599852088c0da2c60b492bd2ad6751f19e7 (plain)
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
PLAN9=../../..
include $(PLAN9)/src/Makehdr

TARG=samterm
OFILES=\
	main.$O\
	icons.$O\
	menu.$O\
	mesg.$O\
	rasp.$O\
	scroll.$O\
	flayer.$O\
	io.$O\
	plan9.$O\

HFILES=\
	samterm.h\
	flayer.h\
	../sam/sam.h\
	../sam/mesg.h\
	$(PLAN9)/include/frame.h\
	$(PLAN9)/include/draw.h\

CFLAGS+=-I../sam
LDFLAGS+=-lframe -ldraw -lthread -l9 -lregexp9 -lbio -lfmt -lutf -L$(X11)/lib -lX11 -lm

samterm: $(PLAN9)/lib/libdraw.a

include $(PLAN9)/src/Makeone