Rename targets: *-l -> *-local
[elinks.git] / src / terminal / Makefile
blob8848365ccb1f82703c572cba60c2e23243f97a16
1 path_to_top=../..
2 include $(path_to_top)/Makefile.config
4 ifeq ($(CONFIG_MOUSE),yes)
5 mouseobj = mouse.o
6 endif
8 OBJS = \
9 color.o \
10 draw.o \
11 event.o \
12 hardio.o \
13 kbd.o \
14 $(mouseobj) \
15 screen.o \
16 tab.o \
17 terminal.o \
18 window.o
20 all-local: libterminal.a
21 libterminal.a: $(OBJS)
23 include $(path_to_top)/Makefile.lib