Userspace program's makefiles now properly delete from initrd/.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-09-06 15:55:56 +02:00
parent 0b373050f2
commit 7037b2f002
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ LOCALBINARIES:=\
pong \
conway \
BINARIES:=$(addprefix $(INITRDDIR)/,$(BINARIES))
BINARIES:=$(addprefix $(INITRDDIR)/,$(LOCALBINARIES))
all: install

View File

@ -6,7 +6,7 @@ INITRDDIR:=../initrd
LOCALBINARIES:=\
hello \
BINARIES:=$(addprefix $(INITRDDIR)/,$(BINARIES))
BINARIES:=$(addprefix $(INITRDDIR)/,$(LOCALBINARIES))
all: install

View File

@ -13,7 +13,7 @@ ls \
help \
uname \
BINARIES:=$(addprefix $(INITRDDIR)/,$(BINARIES))
BINARIES:=$(addprefix $(INITRDDIR)/,$(LOCALBINARIES))
all: install