minix/servers/Makefile
Ben Gras 7697700802 Made src belong to bin in release cp.
Made /usr/include belong to bin in mtree.
Fixed compiler warning in fs/pipe.c.
Added mdb (minix debugger) manual page.
Added ethernet config function in setup script.
2005-06-27 11:59:36 +00:00

23 lines
573 B
Makefile

# Makefile for all system servers.
#
MAKE = exec make -$(MAKEFLAGS)
usage:
@echo "" >&2
@echo "Makefile for all system servers." >&2
@echo "Usage:" >&2
@echo " make build # Compile all system servers locally" >&2
@echo " make clean # Remove local compiler results" >&2
@echo " make install # Install servers to /etc/servers/" >&2
@echo " (requires root privileges)" >&2
@echo "" >&2
build: all
all install depend clean:
cd ./pm && $(MAKE) $@
cd ./fs && $(MAKE) $@
cd ./is && $(MAKE) $@
cd ./init && $(MAKE) $@
cd ./inet && $(MAKE) $@