minix/servers/init/Makefile
Jorrit Herder f2e16763e7 Removed PM signon for INET. Now daemonized in /usr/etc/rc.
SIGTRAP generated in PM (where it belongs / no longer in kernel).
Updated Makefiles: servers are now installed in /usr/sbin.
2005-07-19 12:11:11 +00:00

38 lines
663 B
Makefile

# Makefile for the init program (INIT)
SERVER = init
# directories
u = /usr
i = $u/include
s = $i/sys
h = $i/minix
k = $u/src/kernel
# programs, flags, etc.
CC = exec cc
CFLAGS = -I$i -O -D_MINIX -D_POSIX_SOURCE
LDFLAGS = -i
OBJ = init.o
# build local binary
all build: $(SERVER)
$(SERVER): $(OBJ)
$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(OBJ) -lutils
install -S 192w $@
# install with other servers
install: /usr/sbin/$(SERVER)
/usr/sbin/$(SERVER): $(SERVER)
install -o root -cs $? $@
# clean up local files
clean:
rm -f $(SERVER) *.o *.bak
depend:
/usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
# Include generated dependencies.
include .depend