minix/commands/scripts/Makefile
2005-04-21 14:53:53 +00:00

133 lines
2.3 KiB
Makefile
Executable file

# Makefile for cmd/scripts.
CFLAGS = -D_MINIX -D_POSIX_SOURCE
CCLD = $(CC) -i $(CFLAGS)
MAKE = exec make -$(MAKEFLAGS) install
all: # Does nothing
install: usr root
# Commands on the /usr partition.
usr: \
/usr/bin/DESCRIBE \
/usr/bin/M \
/usr/bin/U \
/usr/bin/MAKEDEV \
/usr/bin/adduser \
/usr/bin/cd \
/usr/bin/[ \
/usr/bin/command \
/usr/bin/echo \
/usr/bin/expr \
/usr/bin/false \
/usr/bin/getopts \
/usr/bin/read \
/usr/bin/test \
/usr/bin/true \
/usr/bin/umask \
/usr/bin/wait \
/usr/bin/checkhier \
/usr/bin/clear \
/usr/bin/clr \
/usr/bin/makewhatis \
/usr/bin/mkdist \
/usr/bin/setup \
/usr/bin/spell \
/usr/bin/srccrc \
/usr/bin/svclog \
/usr/bin/whatis \
/usr/bin/apropos \
/usr/bin/whereis \
# Commands on the root partition.
root: \
/bin/M \
/bin/U \
/bin/cd \
/bin/[ \
/bin/command \
/bin/echo \
/bin/expr \
/bin/false \
/bin/getopts \
/bin/read \
/bin/test \
/bin/true \
/bin/umask \
/bin/wait \
clean:
/usr/bin/DESCRIBE: DESCRIBE.sh
install -c -o bin $? $@
/usr/bin/M: M.sh
install -c -o bin $? $@
/usr/bin/U: /usr/bin/M
install -l $? $@
/usr/bin/MAKEDEV: MAKEDEV.sh
install -c -o bin $? $@
/usr/bin/adduser: adduser.sh
install -c -o bin $? $@
/usr/bin/cd: cd.sh
install -c -o bin $? $@
/usr/bin/[ /usr/bin/command /usr/bin/echo /usr/bin/expr /usr/bin/false \
/usr/bin/getopts /usr/bin/read /usr/bin/test /usr/bin/true /usr/bin/umask \
/usr/bin/wait: /usr/bin/cd
install -l $? $@
/usr/bin/checkhier: checkhier.sh
install -c -o bin $? $@
/usr/bin/clear: clear.sh
install -c -o bin $? $@
/usr/bin/clr: /usr/bin/clear
install -l $? $@
/usr/bin/makewhatis: makewhatis.sh
install -c -o bin $? $@
/usr/bin/mkdist: mkdist.sh
install -c -o bin $? $@
/usr/bin/setup: setup.sh
install -c -o bin $? $@
/usr/bin/spell: spell.sh
install -c -o bin $? $@
/usr/bin/srccrc: srccrc.sh
install -c -o bin $? $@
/usr/bin/svclog: svclog.sh
install -c -o bin $? $@
/usr/bin/whatis: whatis.sh
install -c -o bin $? $@
/usr/bin/apropos: /usr/bin/whatis
install -l $? $@
/usr/bin/whereis: whereis.sh
install -c -o bin $? $@
/bin/M: /usr/bin/M
install -c -o bin $? $@
/bin/U: /bin/M
install -l $? $@
/bin/cd: /usr/bin/cd
install -lc $? $@
/bin/[ /bin/command /bin/echo /bin/expr /bin/false /bin/getopts \
/bin/read /bin/test /bin/true /bin/umask /bin/wait: /bin/cd
install -l $? $@