Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4340 → Rev 4339

/branches/dynload/uspace/Makefile
29,7 → 29,7
## Include configuration
#
 
-include ../Makefile.config
-include Makefile.config
 
DIRS = \
lib/rtld \
79,14 → 79,22
BUILDS := $(addsuffix .build,$(DIRS))
CLEANS := $(addsuffix .clean,$(DIRS))
 
.PHONY: all $(BUILDS) $(CLEANS) clean kerninc
.PHONY: all config build $(BUILDS) $(CLEANS) clean distclean
 
all: ../Makefile.config kerninc $(BUILDS)
all:
../tools/config.py uspace.config default $(ARCH) $(COMPILER) $(CONFIG_DEBUG)
$(MAKE) -C lib/libc kerninc
$(MAKE) -C . build
 
config:
../tools/config.py uspace.config
 
build: $(BUILDS)
 
clean: $(CLEANS)
 
kerninc:
$(MAKE) -C lib/libc kerninc
distclean: clean
-rm Makefile.config
 
$(CLEANS):
-$(MAKE) -C $(basename $@) clean