| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.ifneq ($(filter-out clean,${MAKECMDGOALS}),)include ${TOPDIR}/rules.mkendifCP=cp -fpRCFLAGS_FOR_BUILD+=-DKBUILD_NO_NLSall: ncurses conf mconfLIBS=		-lncursesifeq (/usr/include/ncurses/ncurses.h, $(wildcard /usr/include/ncurses/ncurses.h))CFLAGS_FOR_BUILD+=	-I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"elseifeq (/usr/include/ncurses/curses.h, $(wildcard /usr/include/ncurses/curses.h))CFLAGS_FOR_BUILD+=	-I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"elseifeq (/usr/local/include/ncurses/ncurses.h, $(wildcard /usr/local/include/ncurses/ncurses.h))CFLAGS_FOR_BUILD+=	-I/usr/local/include/ncurses -DCURSES_LOC="<ncurses.h>"elseifeq (/usr/local/include/ncurses/curses.h, $(wildcard /usr/local/include/ncurses/curses.h))CFLAGS_FOR_BUILD+=	-I/usr/local/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"elseifeq (/usr/pkg/include/ncurses.h, $(wildcard /usr/pkg/include/ncurses.h))CFLAGS_FOR_BUILD+=	-I/usr/pkg/include -DCURSES_LOC="<ncurses.h>"LIBS+=		-L/usr/pkg/lib -Wl,-rpath -Wl,/usr/pkg/libelseifeq (/usr/include/ncurses.h, $(wildcard /usr/include/ncurses.h))CFLAGS_FOR_BUILD+=	-DCURSES_LOC="<ncurses.h>"elseCFLAGS_FOR_BUILD+=	-DCURSES_LOC="<curses.h>"LIBS=		-lcursesendifendifendifendifendifendifGTKLIBS = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`GTKCFLAGS = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0`CONF_SRC  =conf.cMCONF_SRC =mconf.c $(wildcard lxdialog/*.c)GCONF_SRC =gconf.cSHARED_SRC=zconf.tab.cSHARED_DEPS:=lkc.h lkc_proto.h lkc_defs.h expr.h zconf.tab.hCONF_OBJS =$(patsubst %.c,%.o, $(CONF_SRC))MCONF_OBJS=$(patsubst %.c,%.o, $(MCONF_SRC))GCONF_OBJS=$(patsubst %.c,%.o, $(GCONF_SRC))SHARED_OBJS=$(patsubst %.c,%.o, $(SHARED_SRC))conf: $(CONF_OBJS) $(SHARED_OBJS)	@$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NATIVE_LDFLAGS) $^ -o $@mconf: $(MCONF_OBJS) $(SHARED_OBJS)	@$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NATIVE_LDFLAGS) $^ -o $@ $(LIBS)gconf: $(GCONF_OBJS) $(SHARED_OBJS)	@$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NATIVE_LDFLAGS) $^ -o $@ $(GTKLIBS)$(CONF_OBJS): %.o : %.c $(SHARED_DEPS)	@$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I. -c $< -o $@$(MCONF_OBJS): %.o : %.c $(SHARED_DEPS)	@$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(HOSTNCURSES) -I. -c $< -o $@$(GCONF_OBJS): %.o : %.c $(SHARED_DEPS)	@$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(GTKCFLAGS) -DLKC_DIRECT_LINK -I. -c $< -o $@glob.o: glob.c $(SHARED_DEPS)	@$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I. -c glob.c -o $@lkc_defs.h: lkc_proto.h	@sed < $< > $@ 's/P(\([^,]*\),.*/#define \1 (\*\1_p)/'#### The following requires flex/bison# By default we use the _shipped versions, uncomment the# following line if you are modifying the flex/bison src.#LKC_GENPARSER:=	1ifdef LKC_GENPARSER%.tab.c %.tab.h: %.y	bison -t -d -v -b $* -p $(notdir $*) $<%.hash.c: %.gperf	gperf < $< > $@lex.%.c: %.l	flex -P$(notdir $*) -o$@ $<lex.zconf.o: lex.zconf.c $(SHARED_DEPS)	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I. -c $< -o $@zconf.tab.o: zconf.tab.c zconf.hash.c lex.zconf.c confdata.c expr.c symbol.c menu.c $(SHARED_DEPS)	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I. -c $< -o $@elselex.zconf.o: lex.zconf.c $(SHARED_DEPS)	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I. -c $< -o $@lex.zconf.c: lex.zconf.c_shipped	@$(CP) lex.zconf.c_shipped lex.zconf.czconf.hash.c: zconf.hash.c_shipped	@$(CP) zconf.hash.c_shipped zconf.hash.czconf.tab.o: zconf.tab.c zconf.hash.c lex.zconf.c confdata.c expr.c symbol.c menu.c $(SHARED_DEPS)	@$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I. -c $< -o $@zconf.tab.c: zconf.tab.c_shipped	@$(CP) zconf.tab.c_shipped zconf.tab.czconf.tab.h: zconf.tab.h_shipped	@$(CP) zconf.tab.h_shipped zconf.tab.hendif.PHONY: ncursesncurses:	@echo "int main(void) { return -1; }" > lxtemp.c	@if $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) lxtemp.c $(LIBS) ; then \		rm -f lxtemp.c a.out; \	else \		rm -f lxtemp.c; \		printf '\007'; \		echo ">> Unable to find the Ncurses libraries." ;\		echo ">>" ;\		echo ">> You must have Ncurses installed in order" ;\		echo ">> to use 'make menuconfig'" ;\		echo ;\		exit 1 ;\	ficlean:	@rm -f *.o *~ core $(TARGETS) $(MCONF_OBJS) $(CONF_OBJS) zconf.hash.c \		conf mconf zconf.tab.c zconf.tab.h lex.zconf.c lkc_defs.h
 |