minix/servers/init/Makefile

39 lines
651 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# 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) -lsys
2009-02-06 17:29:00 +01:00
install -S 64k $@
2005-04-21 16:53:53 +02:00
# install with other servers
install: /usr/sbin/$(SERVER)
/usr/sbin/$(SERVER): $(SERVER)
2005-04-21 16:53:53 +02:00
install -o root -cs $? $@
# clean up local files
clean:
rm -f $(SERVER) *.o *.bak
depend:
2007-02-08 17:26:20 +01:00
mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
# Include generated dependencies.
include .depend
2005-04-21 16:53:53 +02:00