1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
elinks/src/terminal/Makefile
Jonas Fonseca 94ed6fa754 Finalize and cleanup the denser Makefile format
Convert remaining conditional file building to use

	OBJS-$(CONFIG_FOO) += foo.o

one problem with reverse meaining (in util/) fixed with local 'hack'.

Cleanup and remove stuff which is now default targets.
2005-09-28 12:38:17 +02:00

18 lines
235 B
Makefile

path_to_top=../..
include $(path_to_top)/Makefile.config
OBJS-$(CONFIG_MOUSE) += mouse.o
OBJS = \
color.o \
draw.o \
event.o \
hardio.o \
kbd.o \
screen.o \
tab.o \
terminal.o \
window.o
include $(path_to_top)/Makefile.lib