minix/servers/fs/Makefile

36 lines
735 B
Makefile
Raw Normal View History

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
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 = main.o open.o read.o write.o pipe.o dmap.o \
2006-05-11 16:57:23 +02:00
device.o exec.o path.o mount.o link.o super.o inode.o \
2005-04-21 16:53:53 +02:00
cache.o cache2.o filedes.o stadir.o protect.o time.o \
2006-02-24 13:56:06 +01:00
lock.o misc.o utility.o select.o timers.o table.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