# make -f PACKAGES
##################

#
# Maybe, we should add NTFS writing support in bootdisk.
#
all:
	@echo "usage: make -f PACKAGES [ debian | redhat | rootdisk | bootcd ]"
debian: 
	./configure --prefix=/usr --with-sysconfdir=/etc \
		--with-log-dir=/var/log --disable-ssl --enable-all-static

redhat: debian

rootdisk:
	./configure --prefix=/usr --with-sysconfdir=/etc \
		--with-log-dir=/var/log --enable-all-static \
		--disable-login --disable-cheuid --disable-ssl \
		--with-debug-level=0

bootcd: rootdisk

tests:
	./configure --prefix=/tmp --enable-devel \
		--with-log-dir=/tmp \
		--disable-login --disable-cheuid --disable-ssl \
		--with-debug-level=10

