| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 | # Makefile for uClibc## Copyright (C) 2002 Erik Andersen <andersen@codepoet.org>## This program is free software; you can redistribute it and/or modify it under# the terms of the GNU Library General Public License as published by the Free# Software Foundation; either version 2 of the License, or (at your option) any# later version.## This program is distributed in the hope that it will be useful, but WITHOUT# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more# details.## You should have received a copy of the GNU Library General Public License# along with this program; if not, write to the Free Software Foundation, Inc.,# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USATOPDIR=../../include $(TOPDIR)Rules.makall: ncurses conf mconfLIBS = -lncursesifeq (/usr/include/ncurses/ncurses.h, $(wildcard /usr/include/ncurses/ncurses.h))	HOSTNCURSES += -I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"elseifeq (/usr/include/ncurses/curses.h, $(wildcard /usr/include/ncurses/curses.h))	HOSTNCURSES += -I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"elseifeq (/usr/local/include/ncurses/ncurses.h, $(wildcard /usr/local/include/ncurses/ncurses.h))	HOSTCFLAGS += -I/usr/local/include/ncurses -DCURSES_LOC="<ncurses.h>"elseifeq (/usr/local/include/ncurses/curses.h, $(wildcard /usr/local/include/ncurses/curses.h))	HOSTCFLAGS += -I/usr/local/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"elseifeq (/usr/include/ncurses.h, $(wildcard /usr/include/ncurses.h))	HOSTNCURSES += -DCURSES_LOC="<ncurses.h>"else	HOSTNCURSES += -DCURSES_LOC="<curses.h>"endifendifendifendifendifCONF_SRC  =conf.cMCONF_SRC =mconf.c checklist.c menubox.c textbox.c yesno.c inputbox.c util.c msgbox.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))SHARED_OBJS=$(patsubst %.c,%.o, $(SHARED_SRC))conf: $(CONF_OBJS) $(SHARED_OBJS) 	$(HOSTCC) $(NATIVE_LDFLAGS) $^ -o $@mconf: $(MCONF_OBJS) $(SHARED_OBJS)	$(HOSTCC) $(NATIVE_LDFLAGS) $^ -o $@ $(LIBS)$(CONF_OBJS): %.o : %.c $(SHARED_DEPS)	$(HOSTCC) $(HOSTCFLAGS) -I. -c $< -o $@$(MCONF_OBJS): %.o : %.c $(SHARED_DEPS)	$(HOSTCC) $(HOSTCFLAGS) $(HOSTNCURSES) -I. -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 $*) $<lex.%.c: %.l	flex -P$(notdir $*) -o$@ $<elselex.zconf.o: lex.zconf.c $(SHARED_DEPS)	$(HOSTCC) $(HOSTCFLAGS) -I. -c $< -o $@lex.zconf.c: lex.zconf.c_shipped	cp lex.zconf.c_shipped lex.zconf.czconf.tab.o: zconf.tab.c lex.zconf.c confdata.c expr.c symbol.c menu.c $(SHARED_DEPS)	$(HOSTCC) $(HOSTCFLAGS) -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 "main() {}" > lxtemp.c	@if $(HOSTCC) lxtemp.c $(LIBS) ; then \		rm -f lxtemp.c a.out; \	else \		rm -f lxtemp.c; \		echo -e "\007" ;\		echo ">> Unable to find the Ncurses libraries." ;\		echo ">>" ;\		echo ">> You must have Ncurses installed in order" ;\		echo ">> to use 'make menuconfig'" ;\		echo ">>" ;\		echo ">> Maybe you want to try 'make config', which" ;\		echo ">> doesn't depend on the Ncurses libraries." ;\		echo ;\		exit 1 ;\	ficlean:	rm -f *.o *~ core $(TARGETS) $(MCONF_OBJS) $(CONF_OBJS) \		conf mconf zconf.tab.c zconf.tab.h lex.zconf.c lkc_defs.h
 |