OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [scripts/] [Makefile] - Rev 1782

Compare with Previous | Blame | View Log

HOSTCFLAGS:=$(HOSTCFLAGS) -g -Wall
HEADER=header.tk
TAIL=tail.tk

# Ksymoops - to compile error-parsing program
#
ksymoops:
        g++ ksymoops.cc -I /usr/include/g++/ -o ksymoops

# We allow the Makefile in drivers/sound to decide when to rebuild its
# files, rather than trying to second-guess it like we did before.
#
soundscript:
        make -C ${TOPDIR}/drivers/sound mkscript
        @echo

# There is probably a better way to decide when to rebuild kconfig.tk; this
# one won't catch every last change to the various Config.in files.  However,
# the reliance on ${TOPDIR}/Makefile makes sure we at least rebuild when the
# kernel version number changes.
#
kconfig.tk: soundscript ${TOPDIR}/Makefile ${TOPDIR}/arch/${ARCH}/config.in \
                tkparse ${HEADER} ${TAIL}
        ./tkparse < ../arch/${ARCH}/config.in  > kconfig.tmp
        @if [ -f /usr/local/bin/wish ]; then \
                echo '#!'"/usr/local/bin/wish -f" > kconfig.tk; \
        else \
                echo '#!'"/usr/bin/wish -f" > kconfig.tk; \
        fi
        cat ${HEADER} >> ./kconfig.tk
        cat kconfig.tmp >> kconfig.tk
        rm -f kconfig.tmp
        echo "set defaults \"arch/${ARCH}/defconfig\"" >> kconfig.tk
        cat ${TAIL} >> kconfig.tk
        chmod 755 kconfig.tk

tkparse: tkparse.o tkcond.o tkgen.o
        ${HOSTCC} -o tkparse tkparse.o tkcond.o tkgen.o

tkparse.o: tkparse.c tkparse.h
        $(HOSTCC) $(HOSTCFLAGS) -c -o tkparse.o tkparse.c

tkcond.o: tkcond.c tkparse.h
        $(HOSTCC) $(HOSTCFLAGS) -c -o tkcond.o tkcond.c

tkgen.o: tkgen.c tkparse.h
        $(HOSTCC) $(HOSTCFLAGS) -c -o tkgen.o tkgen.c

clean:
        rm -f *~ kconfig.tk *.o tkparse

include $(TOPDIR)/Rules.make

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.