2005-04-21 16:53:53 +02:00
|
|
|
# Makefile for File System (FS)
|
|
|
|
SERVER = fs
|
|
|
|
|
|
|
|
# directories
|
|
|
|
u = /usr
|
|
|
|
i = $u/include
|
|
|
|
s = $i/sys
|
|
|
|
h = $i/minix
|
|
|
|
|
|
|
|
# programs, flags, etc.
|
|
|
|
CC = exec cc
|
|
|
|
CFLAGS = -I$i
|
|
|
|
LDFLAGS = -i
|
2005-06-17 15:41:12 +02:00
|
|
|
LIBS = -lsys -lutils -ltimers
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-06-07 16:43:35 +02:00
|
|
|
OBJ = main.o open.o read.o write.o pipe.o dmap.o \
|
2005-04-21 16:53:53 +02:00
|
|
|
device.o path.o mount.o link.o super.o inode.o \
|
|
|
|
cache.o cache2.o filedes.o stadir.o protect.o time.o \
|
2005-06-17 15:41:12 +02:00
|
|
|
cmostime.o lock.o misc.o utility.o select.o timers.o table.o
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
# build local binary
|
|
|
|
all build: $(SERVER)
|
|
|
|
$(SERVER): $(OBJ)
|
|
|
|
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBS)
|
|
|
|
install -S 512w $@
|
|
|
|
|
|
|
|
# install with other servers
|
|
|
|
install: /usr/sbin/servers/$(SERVER)
|
|
|
|
/usr/sbin/servers/$(SERVER): $(SERVER)
|
|
|
|
install -o root -cs $? $@
|
|
|
|
|
|
|
|
# clean up local files
|
|
|
|
clean:
|
|
|
|
rm -f $(SERVER) *.o *.bak
|
|
|
|
|
2005-06-24 18:21:21 +02:00
|
|
|
depend:
|
|
|
|
/usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-06-24 18:21:21 +02:00
|
|
|
# Include generated dependencies.
|
|
|
|
include .depend
|
2005-04-21 16:53:53 +02:00
|
|
|
|