042c4ac395
Updated debugging dumps at IS server, and function key control. NOTE: pm modified with DEBUG() output, to be removed later.
23 lines
596 B
Makefile
23 lines
596 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 ./sm && $(MAKE) $@
|
|
cd ./is && $(MAKE) $@
|
|
cd ./init && $(MAKE) $@
|
|
cd ./inet && $(MAKE) $@
|
|
|