Handout
This commit is contained in:
20
user/Makefile
Normal file
20
user/Makefile
Normal file
@@ -0,0 +1,20 @@
|
||||
# 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 $@
|
||||
Reference in New Issue
Block a user