minix/servers/vfs/Makefile

38 lines
744 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for File System (FS)
SERVER = vfs
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)
2005-04-21 16:53:53 +02:00
LDFLAGS = -i
LIBS = -lsysutil -lsys -ltimers
2005-04-21 16:53:53 +02:00
OBJ = main.o open.o read.o write.o pipe.o dmap.o \
path.o device.o mount.o link.o exec.o \
filedes.o stadir.o protect.o time.o \
lock.o misc.o utility.o select.o timers.o table.o \
vnode.o vmnt.o request.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)
2006-06-30 16:40:29 +02:00
install -S 16k $@
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