Files
bsb2/user/Makefile
Niklas Gollenstede 174fe17e89 Handout
2025-10-31 22:37:36 +01:00

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 $@