21 lines
374 B
Makefile
21 lines
374 B
Makefile
# Default target
|
|
.DEFAULT_GOAL = all
|
|
|
|
include ../tools/common.mk
|
|
|
|
# assemble list of all apps
|
|
APPS = $(filter app%/, $(wildcard */))
|
|
|
|
IMGBUILDER = $(BUILDDIR)/imgbuilder
|
|
|
|
# (Achtung: ist auch in ../Makefile definiert!)
|
|
INITRD = $(BUILDDIR)/initrd.img
|
|
|
|
all: $(INITRD)
|
|
|
|
# recipe for building the final oostubs image
|
|
$(INITRD):
|
|
@echo "IMGBUILD $@"
|
|
@mkdir -p $(@D)
|
|
@touch $@
|