Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 29 → Rev 30

/shark/trunk/makefile
1,15 → 1,16
#
# Main HARTIK makefile
# Main S.Ha.R.K. makefile
#
 
ifndef BASE
BASE=.
endif
 
include $(BASE)/config/config.mk
 
#
 
.PHONY: install all clean cleanall depend test
.PHONY: install all clean cleanall depend
 
install all clean cleanall depend:
make -C oslib $@
18,21 → 19,3
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