#
# "$Id: Makefile,v 1.46 2002/04/23 17:49:34 mike Exp $"
#
#   Top-level Makefile for the Common UNIX Printing System (CUPS).
#
#   Copyright 1997-2002 by Easy Software Products, all rights reserved.
#
#   These coded instructions, statements, and computer programs are the
#   property of Easy Software Products and are protected by Federal
#   copyright law.  Distribution and use rights are outlined in the file
#   "LICENSE.txt" which should have been included with this file.  If this
#   file is missing or damaged please contact Easy Software Products
#   at:
#
#       Attn: CUPS Licensing Information
#       Easy Software Products
#       44141 Airport View Drive, Suite 204
#       Hollywood, Maryland 20636-3111 USA
#
#       Voice: (301) 373-9603
#       EMail: cups-info@cups.org
#         WWW: http://www.cups.org
#

#-----------------------------------------------------
TOPDIR  :=  $(shell /bin/pwd)
TOPDIR  :=  $(TOPDIR)/..

include $(TOPDIR)/prerules.mk
#-----------------------------------------------------
include Makedefs
BUILDROOT      =       ../../ramdisk

#
# Directories to make...
#

DIRS	=	cups backend berkeley scheduler  \
		 #man berkeley cgi-bin pdftops systemv filter

#
# Make all targets...
#

all:
	if [ ! -e ./filter/libcupsimage.so ] ; then     \
	    cd filter;                                  \
            ln -sf libcupsimage.so.2 libcupsimage.so;   \
            cd - ;                                      \
        fi
	if [ ! -e ./systemv/enable ] ; then             \
	    cd systemv;                                 \
            ln -sf accept enable;                       \
            ln -sf accept disable;                      \
            ln -sf accept reject;                       \
            cd -;                                       \
        fi    
	chmod +x cups-config
	for dir in $(DIRS); do\
		echo Making all in $$dir... ;\
		(cd $$dir ; $(MAKE) $(MFLAGS)) || exit 1;\
	done

#
# Remove object and target files...
#

clean:
	for dir in $(DIRS); do\
		echo Cleaning in $$dir... ;\
		(cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
	done
	find . -name *.[do] | xargs rm -f

#
# Make dependencies
#

depend:
	for dir in $(DIRS); do\
		echo Making dependencies in $$dir... ;\
		(cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\
	done


#
# Install object and target files...
#

install:	#installhdrs
	for dir in $(DIRS); do\
		echo Installing in $$dir... ;\
		(cd $$dir; $(MAKE) $(MFLAGS) install) || exit 1;\
	done
	echo Installing in conf...
	(cd conf; $(MAKE) $(MFLAGS) install)
#	echo Installing in data...
#	(cd data; $(MAKE) $(MFLAGS) install)
#	echo Installing in fonts...
#	(cd fonts; $(MAKE) $(MFLAGS) install)
#	echo Installing in locale...
#	(cd locale; $(MAKE) $(MFLAGS) install)
#	echo Installing in ppd...
#	(cd ppd; $(MAKE) $(MFLAGS) install)
#	echo Installing in templates...
#	(cd templates; $(MAKE) $(MFLAGS) install)
	echo Installing cups-config script...
	$(INSTALL_DIR) $(BINDIR)
	$(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config
#	echo Installing startup script...
#	if test "x$(INITDIR)" != "x"; then \
#		echo $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc.cups; \
#		$(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/rc.cups; \
#	fi

#
# Install source and header files...
#

installsrc:
	gnutar --dereference --exclude=CVS -cf - . | gnutar -C $(SRCROOT) -xf -

installhdrs:
	(cd cups ; $(MAKE) $(MFLAGS) installhdrs) || exit 1;\
	(cd filter ; $(MAKE) $(MFLAGS) installhdrs) || exit 1;


#
# Run the test suite...
#

check test:	all
	echo Running CUPS test suite...
	cd test; ./run-stp-tests.sh


#
# Make software distributions using EPM (http://www.easysw.com/epm)...
#

EPMFLAGS	=	-v

aix:
	epm $(EPMFLAGS) -f aix cups

bsd:
	epm $(EPMFLAGS) -f bsd cups

epm:
	epm $(EPMFLAGS) cups

rpm:
	epm $(EPMFLAGS) -f rpm cups

deb:
	epm $(EPMFLAGS) -f deb cups

depot:
	epm $(EPMFLAGS) -f depot cups

pkg:
	epm $(EPMFLAGS) -f pkg cups

tardist:
	epm $(EPMFLAGS) -f tardist cups

#-----------------------------------------------------
include ../rules.mk
#-----------------------------------------------------

#
# End of "$Id: Makefile,v 1.46 2002/04/23 17:49:34 mike Exp $".
#
