minix/Makefile

72 lines
2 KiB
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Master Makefile to compile everything in /usr/src except the system.
MAKE = exec make -$(MAKEFLAGS)
usage:
@echo "" >&2
@echo "Master Makefile for MINIX commands and utilities." >&2
2005-05-04 11:31:32 +02:00
@echo "Root privileges are required for some actions." >&2
@echo "" >&2
2005-04-21 16:53:53 +02:00
@echo "Usage:" >&2
@echo " make world # Compile everything (libraries & commands)" >&2
2005-05-02 16:30:04 +02:00
@echo " make includes # Install include files from src/" >&2
2005-04-21 16:53:53 +02:00
@echo " make libraries # Compile and install libraries" >&2
2005-09-19 16:48:31 +02:00
@echo " make cmds # Compile all, commands, but don't install" >&2
2005-04-21 16:53:53 +02:00
@echo " make install # Compile and install commands" >&2
2005-06-24 18:25:12 +02:00
@echo " make depend # Generate required .depend files" >&2
2005-04-21 16:53:53 +02:00
@echo " make clean # Remove all compiler results" >&2
@echo "" >&2
@echo "Run 'make' in tools/ to create a new MINIX configuration." >&2; exit 0
@echo "" >&2
# world has to be able to make a new system, even if there
# is no complete old system. it has to install commands, for which
# it has to install libraries, for which it has to install includes,
# for which it has to install /etc (for users and ownerships).
# etcfiles also creates a directory hierarchy in its
# 'make install' target.
#
# etcfiles has to be done first.
2005-09-19 16:48:31 +02:00
world: includes depend libraries cmds install postinstall
2005-04-21 16:53:53 +02:00
2005-05-02 16:30:04 +02:00
includes:
cd include && $(MAKE) install
2005-04-21 16:53:53 +02:00
libraries:
cd lib && $(MAKE) install
cmds:
2005-09-12 16:17:09 +02:00
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) all; fi
2005-04-21 16:53:53 +02:00
2005-04-22 17:53:24 +02:00
install::
2005-09-12 16:17:09 +02:00
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) install; fi
2005-04-21 16:53:53 +02:00
2005-06-24 18:25:12 +02:00
depend::
2005-07-22 20:38:20 +02:00
mkdep kernel
mkdep servers
mkdep drivers
cd kernel && $(MAKE) $@
cd servers && $(MAKE) $@
cd drivers && $(MAKE) $@
2005-06-24 18:25:12 +02:00
2005-04-21 16:53:53 +02:00
clean::
cd lib && $(MAKE) $@
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
etcfiles::
cd etc && $(MAKE) install
2005-07-26 15:50:58 +02:00
clean::
cd test && $(MAKE) $@
2005-04-21 16:53:53 +02:00
all install clean::
cd boot && $(MAKE) $@
cd man && $(MAKE) $@ # First manpages, then commands
2005-04-21 16:53:53 +02:00
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
cd tools && $(MAKE) $@
2005-05-03 10:48:26 +02:00
cd servers && $(MAKE) $@
2005-04-21 16:53:53 +02:00
postinstall:
cd etc && $(MAKE) $@