|
version 1.59, 2006/01/31 21:36:45
|
version 1.60, 2006/02/20 16:59:09
|
|
|
|
| include make/make.platform | include make/make.platform |
| OBJDIR := obj.$(ARCH) | OBJDIR := obj.$(ARCH) |
| | |
| |
# passing target commands down.. is there a better way? |
| |
strip: config.make |
| |
@$(MAKE) -f Makefile.main strip |
| |
|
| |
test: config.make |
| |
@$(MAKE) -f Makefile.main test |
| |
|
| |
install-fusd: config.make |
| |
@$(MAKE) -f Makefile.main install-fusd |
| |
|
| # the default target | # the default target |
| .DEFAULT default: config.make | .DEFAULT default: config.make |
| @make -f Makefile.main $0 |
@$(MAKE) -f Makefile.main |
| | |
| clean: | clean: |
| if [[ ! ( . -ef ./$(OBJDIR) ) ]] ; then rm -rf ./$(OBJDIR) ; fi | if [[ ! ( . -ef ./$(OBJDIR) ) ]] ; then rm -rf ./$(OBJDIR) ; fi |
|
|
|
| @echo " make strip ARCH=<platform>" | @echo " make strip ARCH=<platform>" |
| @echo " strips symbols from all executables." | @echo " strips symbols from all executables." |
| @echo "" | @echo "" |
| |
@echo " make test -- runs regression tests." |
| |
@echo "" |
| |
@echo " make install-fusd -- installs kfusd module." |
| |
@echo "" |
| @echo " make help -- provides this message" | @echo " make help -- provides this message" |
| @echo "" | @echo "" |
| @echo " make config -- runs configure for native platform" | @echo " make config -- runs configure for native platform" |