fuel-main/Makefile
Vladimir Kozhukalov 2fb6856aa5 moved iso2 to iso
2012-06-26 17:55:00 +04:00

33 lines
511 B
Makefile

BUILD_DIR:=build
MODULES=gnupg bootstrap iso test
.PHONY: all clean test help FORCE
help:
@echo 'Available targets:'
@echo ' all - build product'
@echo ' bootstrap - build nailgun bootstrap'
@echo ' iso - build nailgun iso'
@echo ' test - run tests'
all:
test:
# target to force rebuild of other targets
FORCE:
clean:
rm -rf $(BUILD_DIR)
assert-variable=$(if $($1),,$(error Variable $1 need to be defined))
include config.mk
include $(addsuffix /module.mk,$(MODULES))
include rules.mk