Makefile (4e0c1159d83a658d1ffba5bc3442f4ec4cadb436) Makefile (70a6a0cb92f24fd6bbe2e75299168909f735676a)
1# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
5.PHONY: oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config
6
7xconfig: $(obj)/qconf
8 $< arch/$(ARCH)/Kconfig

--- 102 unchanged lines hidden (view full) ---

111
112ifeq ($(gconf-target),1)
113gconf-objs := gconf.o kconfig_load.o zconf.tab.o
114endif
115
116clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
117 .tmp_gtkcheck zconf.tab.c zconf.tab.h lex.zconf.c
118
1# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
5.PHONY: oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config
6
7xconfig: $(obj)/qconf
8 $< arch/$(ARCH)/Kconfig

--- 102 unchanged lines hidden (view full) ---

111
112ifeq ($(gconf-target),1)
113gconf-objs := gconf.o kconfig_load.o zconf.tab.o
114endif
115
116clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
117 .tmp_gtkcheck zconf.tab.c zconf.tab.h lex.zconf.c
118
119# Needed for systems without gettext
120KBUILD_HAVE_NLS := $(shell \
121 if echo "\#include <libint.h>" | $(HOSTCC) $(HOSTCFLAGS) -E - > /dev/null 2>&1 ; \
122 then echo yes ; \
123 else echo no ; fi)
124ifeq ($(KBUILD_HAVE_NLS),no)
125HOSTCFLAGS += -DKBUILD_NO_NLS
126endif
127
119# generated files seem to need this to find local include files
120HOSTCFLAGS_lex.zconf.o := -I$(src)
121HOSTCFLAGS_zconf.tab.o := -I$(src)
122
123HOSTLOADLIBES_qconf = -L$(QTLIBPATH) -Wl,-rpath,$(QTLIBPATH) -l$(QTLIB) -ldl
124HOSTCXXFLAGS_qconf.o = -I$(QTDIR)/include -D LKC_DIRECT_LINK
125
126HOSTLOADLIBES_gconf = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --libs`

--- 102 unchanged lines hidden ---
128# generated files seem to need this to find local include files
129HOSTCFLAGS_lex.zconf.o := -I$(src)
130HOSTCFLAGS_zconf.tab.o := -I$(src)
131
132HOSTLOADLIBES_qconf = -L$(QTLIBPATH) -Wl,-rpath,$(QTLIBPATH) -l$(QTLIB) -ldl
133HOSTCXXFLAGS_qconf.o = -I$(QTDIR)/include -D LKC_DIRECT_LINK
134
135HOSTLOADLIBES_gconf = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --libs`

--- 102 unchanged lines hidden ---