minix/servers/mfs/Makefile

38 lines
686 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for File System (FS)
SERVER = mfs
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
2005-08-29 22:00:49 +02:00
CFLAGS = -I$i $(EXTRA_OPTS)
2005-04-21 16:53:53 +02:00
LDFLAGS = -i
LIBS = -lsys -lsysutil -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 \
write.o inode.o main.o path.o super.o
2005-04-21 16:53:53 +02:00
# build local binary
install all build: $(SERVER)
2005-04-21 16:53:53 +02:00
$(SERVER): $(OBJ)
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBS)
install -S 16k $@ /sbin
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