[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / othersrc / nastore / kern

File: [cvs.NetBSD.org] / othersrc / nastore / kern / Makefile (download)

Revision 1.1.1.1 (vendor branch), Mon Feb 28 02:17:59 2000 UTC (24 years, 1 month ago) by wrstuden
Branch: NAS, MAIN
CVS Tags: nastore3-beta-20000227, HEAD
Changes since 1.1: +0 -0 lines

Import of snapshot of nastore3 code. Includes kernel code for dmfs, dmfs
user utilities, ms66 import and export, vvm, and volman. Also includes
makefile magic to automatically generate .tgz source files from the source.
Solaris support a bit of a question as zoularis is not working at the
moment.

all: miscfs kdcom_lkm dmfs_lkm sbin_progs

install: includes_install kdcom_install dmfs_install sbin_install

clean:
	rm -f miscfs
	(cd lkm/kdcom && make clean);
	(cd lkm/dmfs && make clean);

miscfs:
	ln -s . miscfs

kdcom_lkm:	miscfs
	(cd lkm/kdcom && make );

dmfs_lkm:	miscfs
	(cd lkm/dmfs && make );

sbin_progs:	miscfs
	(cd sbin && make );

includes_install:
	(cd dmfs && make includes);

kdcom_install:
	(cd lkm/kdcom && make install);

dmfs_install:
	(cd lkm/dmfs && make install);

sbin_install:
	(cd sbin && make install);