Subversion Repositories shark

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

#
# Main HARTIK makefile
#

ifndef BASE
BASE=.
endif
include $(BASE)/config/config.mk

#

.PHONY: install all clean cleanall depend test

install all clean cleanall depend:
        make -C oslib $@
        make -C kernel $@
        make -C drivers $@
        make -C fs $@
        make -C libc $@
        make -C ports $@

test:
        make -C examples $@

#
# some usefull hidden target (made by Paolo)
#

ifeq ($(SYSNAME),MS-DOS)

.PHONY: e

e:
        dir /s *.err >errlist
        list errlist

endif