1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

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