phunix/minix/fs/pfs/Makefile
David van Moolenbroek 30d9b70391 PFS: rewrite, restyle
- remove the buffer pool, inode bitmap, and inode hash table, and
  simplify the code accordingly;
- use theoretically slightly more optimal buffer management;
- put the entire source in one file, instead of having many files
  with one or two functions each;
- convert the code to KNF style.

Change-Id: Ib8f6f0bd99fbc6eb9098fba718e71b8e560783d9
2014-09-18 12:46:28 +00:00

9 lines
148 B
Makefile

# Makefile for Pipe File System (PFS)
PROG= pfs
SRCS= pfs.c
DPADD+= ${LIBFSDRIVER} ${LIBSYS}
LDADD+= -lfsdriver -lsys
.include <minix.service.mk>