minix/servers/is/Makefile

44 lines
765 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for Information Server (IS)
SERVER = is
# directories
u = /usr
i = $u/include
s = $i/sys
m = $i/minix
b = $i/ibm
k = $u/src/kernel
p = $u/src/servers/pm
f = $u/src/servers/fs
2005-04-21 16:53:53 +02:00
# programs, flags, etc.
CC = exec cc
CFLAGS = -I$i
LDFLAGS = -i
LIBS = -lsys -lsysutil
2005-04-21 16:53:53 +02:00
OBJ = is.o dmp.o dmp_kernel.o dmp_pm.o dmp_fs.o
2005-04-21 16:53:53 +02:00
# build local binary
all build: $(SERVER)
$(SERVER): $(OBJ)
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBS)
# install -S 256w $@
2005-04-21 16:53:53 +02:00
# install with other servers
install: /usr/sbin/$(SERVER)
/usr/sbin/$(SERVER): $(SERVER)
install -o root -c $? $@
# install -o root -cs $? $@
2005-04-21 16:53:53 +02:00
# clean up local files
clean:
rm -f $(SERVER) *.o *.bak
depend:
/usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
2005-04-21 16:53:53 +02:00
# Include generated dependencies.
include .depend
2005-04-21 16:53:53 +02:00