diff options
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r-- | tools/perf/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 4122a668952e..4734f41f801d 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -483,6 +483,7 @@ else | |||
483 | LIB_OBJS += $(OUTPUT)ui/helpline.o | 483 | LIB_OBJS += $(OUTPUT)ui/helpline.o |
484 | LIB_OBJS += $(OUTPUT)ui/progress.o | 484 | LIB_OBJS += $(OUTPUT)ui/progress.o |
485 | LIB_OBJS += $(OUTPUT)ui/util.o | 485 | LIB_OBJS += $(OUTPUT)ui/util.o |
486 | LIB_OBJS += $(OUTPUT)ui/tui/setup.o | ||
486 | LIB_H += ui/browser.h | 487 | LIB_H += ui/browser.h |
487 | LIB_H += ui/browsers/map.h | 488 | LIB_H += ui/browsers/map.h |
488 | LIB_H += ui/helpline.h | 489 | LIB_H += ui/helpline.h |
@@ -505,6 +506,11 @@ else | |||
505 | BASIC_CFLAGS += $(shell pkg-config --cflags gtk+-2.0) | 506 | BASIC_CFLAGS += $(shell pkg-config --cflags gtk+-2.0) |
506 | EXTLIBS += $(shell pkg-config --libs gtk+-2.0) | 507 | EXTLIBS += $(shell pkg-config --libs gtk+-2.0) |
507 | LIB_OBJS += $(OUTPUT)ui/gtk/browser.o | 508 | LIB_OBJS += $(OUTPUT)ui/gtk/browser.o |
509 | LIB_OBJS += $(OUTPUT)ui/gtk/setup.o | ||
510 | # Make sure that it'd be included only once. | ||
511 | ifneq ($(findstring -DNO_NEWT_SUPPORT,$(BASIC_CFLAGS)),) | ||
512 | LIB_OBJS += $(OUTPUT)ui/setup.o | ||
513 | endif | ||
508 | endif | 514 | endif |
509 | endif | 515 | endif |
510 | 516 | ||