URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [scripts/] [Makefile] - Rev 1779
Go to most recent revision | Compare with Previous | Blame | View Log
HEADER=header.tkTAIL=tail.tk# Previous versions always remade kconfig.tk because they always depended# on soundscript. This runs fairly fast, and I can't find all the# Config.in files to depend on anyways. So I'll force it to remake.kconfig.tk: dummykconfig.tk: ${TOPDIR}/Makefile ${TOPDIR}/arch/${ARCH}/config.in \tkparse ${HEADER} ${TAIL}@if [ -f /usr/local/bin/wish ]; then \echo '#!'"/usr/local/bin/wish -f" > kconfig.tk; \else \echo '#!'"/usr/bin/wish -f" > kconfig.tk; \ficat ${HEADER} >> ./kconfig.tk./tkparse < ../arch/${ARCH}/config.in >> kconfig.tkecho "set defaults \"arch/${ARCH}/defconfig\"" >> kconfig.tkecho "set ARCH \"${ARCH}\"" >> kconfig.tkcat ${TAIL} >> kconfig.tkchmod 755 kconfig.tktkparse: tkparse.o tkcond.o tkgen.o${HOSTCC} -o tkparse tkparse.o tkcond.o tkgen.otkparse.o: tkparse.c tkparse.htkcond.o: tkcond.c tkparse.htkgen.o: tkgen.c tkparse.htkparse.o tkcond.o tkgen.o:$(HOSTCC) $(HOSTCFLAGS) -c -o $@ $(@:.o=.c)docproc.o: docproc.c$(HOSTCC) $(HOSTCFLAGS) -c -o $@ $(@:.o=.c)docproc: docproc.o${HOSTCC} -o docproc docproc.oclean:rm -f *~ kconfig.tk *.o tkparse mkdep split-include docprocinclude $(TOPDIR)/Rules.make
Go to most recent revision | Compare with Previous | Blame | View Log
