minix/servers/mfs/Makefile

45 lines
839 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for File System (FS)
SERVER = mfs
DEST=/sbin/$(SERVER)
NR_BUFS=1024
BS=4096
2005-04-21 16:53:53 +02:00
# directories
u = /usr
i = $u/include
s = $i/sys
h = $i/minix
# programs, flags, etc.
CC = exec cc
CFLAGS = -I$i $(EXTRA_OPTS) $(CPROFILE) -DNR_BUFS=$(NR_BUFS)
2005-04-21 16:53:53 +02:00
LDFLAGS = -i
LIBS = -lsys -ltimers
2005-04-21 16:53:53 +02:00
OBJ = cache.o device.o link.o \
mount.o misc.o open.o pipe.o protect.o read.o \
stadir.o table.o time.o utility.o \
2007-08-07 15:21:55 +02:00
write.o inode.o main.o path.o super.o
2005-04-21 16:53:53 +02:00
# build local binary
all build: $(SERVER)
2005-04-21 16:53:53 +02:00
$(SERVER): $(OBJ)
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBS)
install -S `expr $(NR_BUFS) \* $(BS) \* 2.2` $(SERVER)
install: $(SERVER)
-mv $(DEST) $(DEST).prev
install $(SERVER) $(DEST)
2005-04-21 16:53:53 +02:00
# 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
2005-04-21 16:53:53 +02:00
# Include generated dependencies.
include .depend